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 4e129f6 commit 5fcf06dCopy full SHA for 5fcf06d
src/app/services/configuration-control.service.ts
@@ -145,7 +145,7 @@ export class ConfigurationControlService {
145
Object.keys(configuration).forEach(key => {
146
const element = configuration[key];
147
element.key = key;
148
- element.value = element.value ? element.value : element.default;
+ element.value = (element.value || element.value === '') ? element.value : element.default;
149
if (element.type.toLowerCase() == 'acl') {
150
// fetch all acls if property type is 'acl'
151
this.getAllACLs();
0 commit comments