We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 92526f9 + c2d3281 commit 16bca9fCopy full SHA for 16bca9f
src/components/Incident.svelte
@@ -133,10 +133,10 @@
133
<div>
134
{@html config.i18n.incidentCommentSummary
135
.replace(
136
- /\$DATE/,
+ /\$DATE/g,
137
`<a href=${comment.html_url}>${new Date(comment.created_at).toLocaleString()}</a>`
138
)
139
- .replace(/\$AUTHOR/, `<a href=${comment.user.html_url}>@${comment.user.login}</a>`)}
+ .replace(/\$AUTHOR/g, `<a href=${comment.user.html_url}>@${comment.user.login}</a>`)}
140
</div>
141
</article>
142
{/each}
0 commit comments