Remove unclosed tag

This commit is contained in:
lowlighter
2021-03-04 18:59:27 +01:00
parent 737096b9ca
commit 8fe2220fa7
2 changed files with 2 additions and 1 deletions

View File

@@ -68,7 +68,7 @@
//Line breaks //Line breaks
.replace(/\n/g, "<br/>") .replace(/\n/g, "<br/>")
//Links //Links
.replace(new RegExp(`${tweet.urls.size ? "" : "noop^"}(${[...tweet.urls.keys()].map(url => `(?:${url})`).join("|")})`, "gi"), (_, url) => `<span class="link">${tweet.urls.get(url)}<link></span>`), {"&":true}) .replace(new RegExp(`${tweet.urls.size ? "" : "noop^"}(${[...tweet.urls.keys()].map(url => `(?:${url})`).join("|")})`, "gi"), (_, url) => `<span class="link">${tweet.urls.get(url)}</span>`), {"&":true})
})) }))
//Result //Result

View File

@@ -165,6 +165,7 @@
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: flex-end; justify-content: flex-end;
padding: 0 4px;
} }
/* Speed test categories */ /* Speed test categories */