mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-04-24 05:47:22 -04:00
Fixed: Adds a fix to support 3 digit issues (#157)
* Adds a fix to support 3 digit issues * Fixes mistype with bug fix
This commit is contained in:
parent
5802d20b93
commit
b0819c97ed
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ class UpdateChanges extends Component {
|
|||
<ul>
|
||||
{
|
||||
changes.map((change, index) => {
|
||||
const checkChange = change.replace(/#\d{4,5}\b/g, (match, contents) => {
|
||||
const checkChange = change.replace(/#\d{3,5}\b/g, (match, contents) => {
|
||||
return `[${match}](https://github.com/Prowlarr/Prowlarr/issues/${match.substring(1)})`;
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue