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 c34aa16 commit 6186768Copy full SHA for 6186768
src/common/vpSubsetEditor.js
@@ -2278,12 +2278,14 @@ define([
2278
this.setPreview(code.toString());
2279
}
2280
2281
- code.appendLine();
2282
// display
2283
- if (allocation && this.state.allocateTo != '') {
2284
- code.append(this.state.allocateTo);
2285
- } else {
2286
- code.append(this.state.pandasObject);
+ if (this.useCell) {
+ code.appendLine();
+ if (allocation && this.state.allocateTo != '') {
+ code.append(this.state.allocateTo);
+ } else {
2287
+ code.append(this.state.pandasObject);
2288
+ }
2289
2290
return code.toString();
2291
0 commit comments