瀏覽代碼

AMBARI-7287. Slider View: Unable to see added config in create slider app wizard (alexantonenko)

Alex Antonenko 10 年之前
父節點
當前提交
85a8977582
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      contrib/views/slider/src/main/resources/ui/app/components/configSection.js

+ 1 - 1
contrib/views/slider/src/main/resources/ui/app/components/configSection.js

@@ -146,7 +146,7 @@ App.ConfigSectionComponent = Em.Component.extend({
         });
         return;
       }
-      this.get('config').pushObject({name: name, value: value, label: name});
+      this.get('config').pushObject(App.ConfigProperty.create({name: name, value: value, label: name}));
       this.cleanNewConfig();
       this.toggleProperty('buttonVisible');
     },