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
Diego let me know that when they're using the multi-compare phenogrid at IMPC, genotype names aren't displaying correctly in the phenogrid tooltips.
This should be an easy fix. Genotype names contain sup html tags, so we need them to be interpreted as html. We took care of this elsewhere in the UI with #720.
The change is essentially replacing <span class="name">{{ name }}</span> with <span class="name" v-html="name"></span>
Potentially, this tooltip involving the column label is the one that we need to covert to passing html into a span:
Diego let me know that when they're using the multi-compare phenogrid at IMPC, genotype names aren't displaying correctly in the phenogrid tooltips.
This should be an easy fix. Genotype names contain sup html tags, so we need them to be interpreted as html. We took care of this elsewhere in the UI with #720.
The change is essentially replacing
<span class="name">{{ name }}</span>
with<span class="name" v-html="name"></span>
Potentially, this tooltip involving the column label is the one that we need to covert to passing html into a span:
The text was updated successfully, but these errors were encountered: