Skip to content

Commit 6d79f5a

Browse files
author
minjk-bl
committed
Add hover title on multiselector columns
1 parent a4ae360 commit 6d79f5a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

visualpython/js/com/component/MultiSelector.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -367,9 +367,9 @@ define([
367367
let infoStr = '';
368368
if (mode === 'columns') {
369369
if (data.isNumeric === true) {
370-
iconStr = '<span class="vp-icon-numeric mr5 vp-vertical-text"></span>';
370+
iconStr = '<span class="vp-icon-numeric mr5 vp-vertical-text" title="Numeric column"></span>';
371371
} else {
372-
iconStr = '<span class="vp-icon-non-numeric mr5 vp-vertical-text"></span>';
372+
iconStr = '<span class="vp-icon-non-numeric mr5 vp-vertical-text" title="Non-numeric column"></span>';
373373
}
374374
} else if (mode === 'variable') {
375375
infoStr = `<span class="vp-gray-text"> | ${data.type}</span>`;
@@ -401,9 +401,9 @@ define([
401401
let infoStr = '';
402402
if (mode === 'columns') {
403403
if (data.isNumeric === true) {
404-
iconStr = '<span class="vp-icon-numeric mr5 vp-vertical-text"></span>';
404+
iconStr = '<span class="vp-icon-numeric mr5 vp-vertical-text" title="Numeric column"></span>';
405405
} else {
406-
iconStr = '<span class="vp-icon-non-numeric mr5 vp-vertical-text"></span>';
406+
iconStr = '<span class="vp-icon-non-numeric mr5 vp-vertical-text" title="Non-numeric column"></span>';
407407
}
408408
} else if (mode === 'variable') {
409409
infoStr = `<span class="vp-gray-text"> | ${data.type}</span>`;

0 commit comments

Comments
 (0)