Skip to content

Commit 32afd57

Browse files
author
minjk-bl
committed
Frame, Subset style, operation detail fix
1 parent c56337e commit 32afd57

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

src/common/vpFrameEditor.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1647,6 +1647,8 @@ define([
16471647
}
16481648
if (isText) {
16491649
newCode = newCode + "'" + code + "'";
1650+
} else {
1651+
newCode = code;
16501652
}
16511653
return newCode;
16521654
}

src/common/vpSubsetEditor.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ define([
316316
popupTag.appendLine('</div>'); // VP_DS_ROWTYPE_BOX
317317

318318
// condition box start
319-
popupTag.appendFormatLine('<div class="{0} {1} {2}" style="display:none;">', VP_DS_ROWTYPE_BOX, 'condition', 'no-selection');
319+
popupTag.appendFormatLine('<div class="{0} {1} {2} {3}" style="display:none;">', VP_DS_ROWTYPE_BOX, 'condition', 'vp-apiblock-scrollbar', 'no-selection');
320320
// row condition
321321
// popupTag.appendFormatLine('<label class="{0}">{1}</label>'
322322
// , '', 'Conditional Subset');
@@ -650,8 +650,8 @@ define([
650650
var that = this;
651651
var tag = new sb.StringBuilder();
652652
tag.appendFormatLine('<div class="{0}">', VP_DS_SLICING_BOX);
653-
tag.appendFormatLine('<label class="{0}">{1}</label>'
654-
, '', 'Slice');
653+
// tag.appendFormatLine('<label class="{0}">{1}</label>'
654+
// , '', 'Slice');
655655
// tag.appendFormatLine('<input type="text" class="{0} {1}" placeholder="{2}"/> : ', VP_DS_COL_SLICE_START, 'vp-input m', 'start');
656656
// tag.appendFormatLine('<input type="text" class="{0} {1}" placeholder="{2}"/>', VP_DS_COL_SLICE_END, 'vp-input m', 'end');
657657
var vpColStart = new vpSuggestInputText.vpSuggestInputText();

0 commit comments

Comments
 (0)