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 cef0d25 commit 39b7e6fCopy full SHA for 39b7e6f
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.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