Skip to content

Commit 94a02cd

Browse files
author
Erwin Dondorp
committed
cope with the additional text of the tooltip
1 parent fc88999 commit 94a02cd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

saltgui/static/scripts/panels/Panel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ export class Panel {
348348

349349
// mark columns as click-able
350350
for (const th of thArr) {
351-
if (th.innerText !== "" && th.innerText != Character.HEAVY_CHECK_MARK) {
351+
if (th.innerText !== "" && !th.innerText.startsWith(Character.HEAVY_CHECK_MARK)) {
352352
th.classList.add("sorttable_sortable", "tooltip");
353353
}
354354
}

0 commit comments

Comments
 (0)