Merge branch 'master' into release-frozen
This commit is contained in:
commit
bfaf856c16
|
|
@ -1511,6 +1511,12 @@ function* pasteWidgetSaga() {
|
|||
copiedWidgetGroups,
|
||||
);
|
||||
|
||||
selectedWidget = yield checkIfPastingIntoListWidget(
|
||||
stateWidgets,
|
||||
selectedWidget,
|
||||
copiedWidgetGroups,
|
||||
);
|
||||
|
||||
const pastingIntoWidgetId: string = yield getParentWidgetIdForPasting(
|
||||
{ ...stateWidgets },
|
||||
selectedWidget,
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@ const DEFS: Def[] = [
|
|||
xmlJs,
|
||||
forge,
|
||||
];
|
||||
|
||||
const bigDoc = 250;
|
||||
const cls = "CodeMirror-Tern-";
|
||||
const hintDelay = 1700;
|
||||
|
|
|
|||
|
|
@ -110,6 +110,7 @@ export default function evaluate(
|
|||
// so that eval can happen
|
||||
const unescapedJS = unescapeJS(js.replace(beginsWithLineBreakRegex, ""));
|
||||
const script = getScriptToEval(unescapedJS, evalArguments, isTriggerBased);
|
||||
|
||||
return (function() {
|
||||
let errors: EvaluationError[] = [];
|
||||
let result;
|
||||
|
|
|
|||
Loading…
Reference in New Issue