We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c504df commit 0bb8698Copy full SHA for 0bb8698
1 file changed
src/pandas/common/pandasGenerator.js
@@ -108,10 +108,10 @@ define([
108
var requiredFontStyle = required? vpConst.COLOR_FONT_ORANGE : '';
109
$(lbl).attr({
110
'for': obj.name,
111
- 'class': requiredFontStyle
+ 'class': requiredFontStyle,
112
+ 'title': '(' + obj.name + ')'
113
});
- // lbl.innerText = (required? '* ':'') + obj.label + (showKey?' ('+obj.name+')':'');
114
- lbl.innerText = obj.label + (showKey?' ('+obj.name+')':'');
+ lbl.innerText = obj.label;
115
tblLabel.appendChild(lbl);
116
117
// 명시된 component에 맞는 태그 구성해서 붙여주기
0 commit comments