Commit b3cfb4b8029a395e9262d61c16954bb7f31719e6

Authored by Benjamin Renard
1 parent 1604a2ea

Add missing requires

js/app/views/PlotComponents/PlotPreviewUI.js
... ... @@ -18,7 +18,8 @@ Ext.define('amdaPlotComp.PlotPreviewUI', {
18 18 alias: 'widget.plotPreview',
19 19  
20 20 requires: [
21   - 'amdaPlotComp.PlotContextManager'
  21 + 'amdaPlotComp.PlotContextManager',
  22 + 'amdaPlotComp.PlotResultImage'
22 23 ],
23 24  
24 25 panelImage : null,
... ...
js/app/views/PlotTabResultUI.js
... ... @@ -20,7 +20,8 @@ Ext.define('amdaUI.PlotTabResultUI', {
20 20 requires: [
21 21 'amdaPlotComp.PlotZoomPlug',
22 22 'amdaPlotComp.PlotExtendShiftPlug',
23   - 'amdaPlotComp.PlotContextManager'
  23 + 'amdaPlotComp.PlotContextManager',
  24 + 'amdaPlotComp.PlotResultImage'
24 25 ],
25 26  
26 27 panelImage : null,
... ...