Skip to content

Commit

Permalink
remove semi colons
Browse files Browse the repository at this point in the history
  • Loading branch information
marthasharkey committed Mar 3, 2025
1 parent 01732eb commit 1f55fed
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -195,9 +195,9 @@ function formatNumber(params: ICellRendererParams) {
function formatText(params: ICellRendererParams) {
const htmlEscaped = params.value
.replaceAll('&', '&')
.replaceAll('<', '&lt;')
.replaceAll('>', '&gt;')
.replaceAll('&', '&amp')
.replaceAll('<', '&lt')
.replaceAll('>', '&gt')
if (textFormatterSelected.value === 'off') {
const replaceLinks = replaceLinksWithTag(htmlEscaped)
Expand Down

0 comments on commit 1f55fed

Please sign in to comment.