Commit 255b183d243331085b863fb7dc35c73894ab9f8d
1 parent
abde111c
Exists in
master
and in
51 other branches
Fix
Showing
2 changed files
with
2 additions
and
2 deletions
Show diff stats
js/app/models/PlotObjects/PlotPanelObject.js
... | ... | @@ -41,7 +41,7 @@ Ext.define('amdaPlotObj.PlotPanelObject', { |
41 | 41 | {name: 'fills-node-state', type: 'int', defaultValue: 2}, //0 : collapsed, 1 : expanded, 2 : not set |
42 | 42 | {name: 'panel-index', type: 'int'}, |
43 | 43 | {name: 'panel-background-color', type: 'string'}, |
44 | - { name: 'panel-plotareabackground-color', type: 'string' }, | |
44 | + { name: 'panel-plotareabackground-color', type: 'string', defaultValue: 'none' }, | |
45 | 45 | {name: 'panel-title-text', type: 'string'}, |
46 | 46 | {name: 'panel-title-color', type: 'string'}, |
47 | 47 | {name: 'panel-title-position', type: 'string'}, |
... | ... |
js/app/views/ParamArgumentsUI.js
... | ... | @@ -49,7 +49,7 @@ Ext.define('amdaUI.ParamArgumentsUI', { |
49 | 49 | if (explorerModule) { |
50 | 50 | explorerModule.getParamInfo(paramRequestObject.get('paramid'), function (paramInfo) { |
51 | 51 | if (paramInfo) { |
52 | - paramRequestObject.set(amdaPlotObj.PlotObjectConfig.bgSubstraction.tableName, paramInfo.data.tables); | |
52 | + paramRequestObject.set("channels-param-info", paramInfo.data.tables); | |
53 | 53 | |
54 | 54 | if (!paramRequestObject.get('is-init')) { |
55 | 55 | if (paramInfo.data && paramInfo.data.dimensions) { |
... | ... |