UI: Update database to connection name on role (#18350)
* Update database to connection name on role * Add changelog
This commit is contained in:
parent
809a04c8b4
commit
6d80ecdbdf
|
@ -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)]
|
||||
```
|
|
@ -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',
|
||||
|
|
Loading…
Reference in New Issue