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.
2 parents 1412c67 + 39b7e6f commit e0e36f8Copy full SHA for e0e36f8
src/app/services/configuration-control.service.ts
@@ -146,7 +146,7 @@ export class ConfigurationControlService {
146
Object.keys(configuration).forEach(key => {
147
const element = configuration[key];
148
element.key = key;
149
- element.value = element.value ? element.value : element.default;
+ element.value = element.value !== undefined ? element.value : element.default;
150
if (element.type.toLowerCase() == 'acl') {
151
// fetch all acls if property type is 'acl'
152
this.getAllACLs();
0 commit comments