We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7b6c23 commit 10c5b2fCopy full SHA for 10c5b2f
index.js
@@ -24,7 +24,7 @@ var DeployPluginBase = CoreObject.extend({
24
this.log('config ok');
25
},
26
applyDefaultConfigProperty: function(propertyName){
27
- if (!this.pluginConfig[propertyName]) {
+ if (this.pluginConfig[propertyName] === undefined) {
28
var value = this.defaultConfig[propertyName];
29
this.pluginConfig[propertyName] = value;
30
var description = value;
0 commit comments