diff options
Diffstat (limited to 'client')
-rw-r--r-- | client/src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.ts b/client/src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.ts index 1acaf9674..4e60ca290 100644 --- a/client/src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.ts +++ b/client/src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.ts | |||
@@ -97,7 +97,7 @@ export class PluginShowInstalledComponent extends FormReactive implements OnInit | |||
97 | private getSetting (name: string) { | 97 | private getSetting (name: string) { |
98 | const settings = this.plugin.settings | 98 | const settings = this.plugin.settings |
99 | 99 | ||
100 | if (settings && settings[name]) return settings[name] | 100 | if (settings && settings[name] !== undefined) return settings[name] |
101 | 101 | ||
102 | const registered = this.registeredSettings.find(r => r.name === name) | 102 | const registered = this.registeredSettings.find(r => r.name === name) |
103 | 103 | ||