Skip to content

Commit 0bb8698

Browse files
author
minjk-bl
committed
Pandas options - key is now showing on label hover
1 parent 8c504df commit 0bb8698

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/pandas/common/pandasGenerator.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,10 @@ define([
108108
var requiredFontStyle = required? vpConst.COLOR_FONT_ORANGE : '';
109109
$(lbl).attr({
110110
'for': obj.name,
111-
'class': requiredFontStyle
111+
'class': requiredFontStyle,
112+
'title': '(' + obj.name + ')'
112113
});
113-
// lbl.innerText = (required? '* ':'') + obj.label + (showKey?' ('+obj.name+')':'');
114-
lbl.innerText = obj.label + (showKey?' ('+obj.name+')':'');
114+
lbl.innerText = obj.label;
115115
tblLabel.appendChild(lbl);
116116

117117
// 명시된 component에 맞는 태그 구성해서 붙여주기

0 commit comments

Comments
 (0)