diff --git a/changelog/18350.txt b/changelog/18350.txt new file mode 100644 index 000000000..efe65ee3c --- /dev/null +++ b/changelog/18350.txt @@ -0,0 +1,3 @@ +```release-note:improvement +ui: Update language on database role to "Connection name" [[GH-18261](https://github.com/hashicorp/vault/issues/18261)] +``` diff --git a/ui/app/models/database/role.js b/ui/app/models/database/role.js index 02cec979f..b9690e9cf 100644 --- a/ui/app/models/database/role.js +++ b/ui/app/models/database/role.js @@ -12,13 +12,13 @@ export default Model.extend({ label: 'Role name', }), database: attr('array', { - label: 'Database name', + label: 'Connection name', editType: 'searchSelect', fallbackComponent: 'string-list', models: ['database/connection'], selectLimit: 1, onlyAllowExisting: true, - subText: 'The database for which credentials will be generated.', + subText: 'The database connection for which credentials will be generated.', }), type: attr('string', { label: 'Type of role',