Skip to content

Commit 325db02

Browse files
author
minjk-bl
committed
Fix Subset bug on column selection
1 parent 639be85 commit 325db02

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

visualpython/js/m_apps/Subset.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -467,13 +467,13 @@ define([
467467
// tag.appendFormatLine('<button type="button" class="{0} {1}" title="{2}"><img src="{3}"/></button>',
468468
// VP_DS_SELECT_DEL_ALL_BTN, 'select-col', 'Remove all items', com_Const.IMAGE_PATH + 'arrow_left_double.svg');
469469
tag.appendFormatLine('<button type="button" class="{0} {1}" title="{2}"><div class="vp-icon-arrow-right-double"></div></button>',
470-
VP_DS_SELECT_ADD_ALL_BTN, 'select-row', 'Add all items');
470+
VP_DS_SELECT_ADD_ALL_BTN, 'select-col', 'Add all items');
471471
tag.appendFormatLine('<button type="button" class="{0} {1}"><div class="vp-icon-arrow-right"></div></button>',
472-
VP_DS_SELECT_ADD_BTN, 'select-row');
472+
VP_DS_SELECT_ADD_BTN, 'select-col');
473473
tag.appendFormatLine('<button type="button" class="{0} {1}"><div class="vp-icon-arrow-left"></div></button>',
474-
VP_DS_SELECT_DEL_BTN, 'select-row');
474+
VP_DS_SELECT_DEL_BTN, 'select-col');
475475
tag.appendFormatLine('<button type="button" class="{0} {1}" title="{2}"><div class="vp-icon-arrow-left-double"></div></button>',
476-
VP_DS_SELECT_DEL_ALL_BTN, 'select-row', 'Remove all items');
476+
VP_DS_SELECT_DEL_ALL_BTN, 'select-col', 'Remove all items');
477477
tag.appendLine('</div>'); // VP_DS_SELECT_BTNS
478478

479479
// col select - right

0 commit comments

Comments
 (0)