Kyle Belfort 5 سال پیش
والد
کامیت
11e9322888
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      nodeEditor/src/diagram/graphCanvas.tsx

+ 1 - 1
nodeEditor/src/diagram/graphCanvas.tsx

@@ -857,7 +857,7 @@ export class GraphCanvasComponent extends React.Component<IGraphCanvasComponentP
         // Frames
         if (editorData.frames) {
             if (isImportingAFrame) {
-                var frame = GraphFrame.Parse(editorData.frames[editorData.frames.length - 1], this, editorData.map);
+                const frame = GraphFrame.Parse(editorData.frames[editorData.frames.length - 1], this, editorData.map);
                 this._frames.push(frame);
                 this.globalState.onSelectionChangedObservable.notifyObservers(frame);
             } else {