Skip to content

Commit

Permalink
UI: Update database to connection name on role (#18350)
Browse files Browse the repository at this point in the history
* Update database to connection name on role

* Add changelog
  • Loading branch information
hashishaw authored and AnPucel committed Jan 14, 2023
1 parent f543a71 commit 6df3674
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions changelog/18350.txt
Original file line number Diff line number Diff line change
@@ -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)]
```
4 changes: 2 additions & 2 deletions ui/app/models/database/role.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 6df3674

Please sign in to comment.