Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
Monkeychip committed Jan 17, 2025
1 parent 06ae272 commit 7cd35d7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ui/app/models/aws/root-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export default class AwsRootConfig extends Model {
return formFields.filter((attr) => attr.name !== 'secretKey');
}

// "filedGroupsWif" and "fieldGroupsIam" are passed to the FormFieldGroups component to determine which group to show in the form (ex: @groupName="fieldGroupsWif")
// "filedGroupsWif" and "fieldGroupsAccount" are passed to the FormFieldGroups component to determine which group to show in the form (ex: @groupName="fieldGroupsWif")
get fieldGroupsWif() {
return fieldToAttrs(this, this.formFieldGroups('wif'));
}
Expand Down
2 changes: 1 addition & 1 deletion ui/app/models/azure/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export default class AzureConfig extends Model {
return formFields.filter((attr) => attr.name !== 'clientSecret');
}

// "filedGroupsWif" and "fieldGroupsAzure" are passed to the FormFieldGroups component to determine which group to show in the form (ex: @groupName="fieldGroupsWif")
// "filedGroupsWif" and "fieldGroupsAccount" are passed to the FormFieldGroups component to determine which group to show in the form (ex: @groupName="fieldGroupsWif")
get fieldGroupsWif() {
return fieldToAttrs(this, this.formFieldGroups('wif'));
}
Expand Down
6 changes: 3 additions & 3 deletions ui/types/vault/models/secret-engine/config.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ export default class SecretEngineConfig extends Model {
identityTokenTtl: any;

get displayAttrs(): any;
get isConfigured(): boolean;
get isWifPluginConfigured(): boolean;
get isAccountPluginConfigured(): boolean;
get fieldGroupsWif(): any;
get fieldGroupsAzure(): any;
get fieldGroupsGcp(): any;
get fieldGroupsIam(): any;
get fieldGroupsAccount(): any;

formFieldGroups(accessType?: string): {
[key: string]: string[];
}[];
Expand Down

0 comments on commit 7cd35d7

Please sign in to comment.