You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Generates a weird tag query (https://www.biostars.org/tag/%3Cb%20class=%22match%20term0%22%3ETCGA%3C/b%3E/).
This happens because while a non-highlighted tag has the HTML content <a class="ptag" href="/tag/barcode/">barcode</a>, a highlighted tag has the content <a class="ptag" href="/tag/%3Cb%20class=%22match%20term0%22%3ETCGA%3C/b%3E/"><b class="match term0">TCGA</b></a> or the not so clean <a class="ptag" href="/tag/<b class="match term0">TCGA</b>/"><b class="match term0">TCGA</b></a>. It looks like the part that sets the innerHTML for the tag also sets the link in one go.
The text was updated successfully, but these errors were encountered:
This happens both at https://www.biostars.org/ and https://support.bioconductor.org/
Steps to reproduce:
https://www.biostars.org/tag/%3Cb%20class=%22match%20term0%22%3ETCGA%3C/b%3E/
).This happens because while a non-highlighted tag has the HTML content
<a class="ptag" href="/tag/barcode/">barcode</a>
, a highlighted tag has the content<a class="ptag" href="/tag/%3Cb%20class=%22match%20term0%22%3ETCGA%3C/b%3E/"><b class="match term0">TCGA</b></a>
or the not so clean<a class="ptag" href="/tag/<b class="match term0">TCGA</b>/"><b class="match term0">TCGA</b></a>
. It looks like the part that sets the innerHTML for the tag also sets the link in one go.The text was updated successfully, but these errors were encountered: