|
@@ -30,6 +30,10 @@ App.PlainConfigTextField = Ember.View.extend(App.SupportsDependentConfigs, App.W
|
|
|
classNames: ['widget-config-plain-text-field'],
|
|
|
placeholderBinding: 'config.savedValue',
|
|
|
|
|
|
+ disabled: function() {
|
|
|
+ return !this.get('config.isEditable');
|
|
|
+ }.property('config.isEditable'),
|
|
|
+
|
|
|
configLabel: function() {
|
|
|
return this.get('config.stackConfigProperty.displayName') || this.get('config.displayName') || this.get('config.name');
|
|
|
}.property('config.name', 'config.displayName'),
|