Skip to content

Commit 994670d

Browse files
authored
Merge pull request #77 from bcgov-nr/fix/kvTools
fix: equal statement should be ===
2 parents c35f448 + 606d178 commit 994670d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vault/policy-roots/impl/system-policy.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ export class SystemPolicyService implements PolicyRootService<undefined> {
9999
templateName: 'kv-developer',
100100
data: { secretKvPath },
101101
});
102-
if (secretKvPath == 'apps')
102+
if (secretKvPath === 'apps')
103103
kvSpecs.push({
104104
group: VAULT_ROOT_SYSTEM,
105105
templateName: 'kv-tools-read',

0 commit comments

Comments
 (0)