From 60c6708ee015242e6f91a0b3e070b8acb87315c9 Mon Sep 17 00:00:00 2001 From: Chelsea Shaw <82459713+hashishaw@users.noreply.github.com> Date: Wed, 14 Dec 2022 10:23:59 -0600 Subject: [PATCH] UI: Update database to connection name on role (#18350) * Update database to connection name on role * Add changelog --- changelog/18350.txt | 3 +++ ui/app/models/database/role.js | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 changelog/18350.txt diff --git a/changelog/18350.txt b/changelog/18350.txt new file mode 100644 index 000000000000..efe65ee3cd96 --- /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 e8fc3a67a02c..3439074f5cec 100644 --- a/ui/app/models/database/role.js +++ b/ui/app/models/database/role.js @@ -18,8 +18,8 @@ export default Model.extend({ models: ['database/connection'], selectLimit: 1, onlyAllowExisting: true, - subLabel: 'Database name', - subText: 'The database for which credentials will be generated.', + subLabel: 'Connection name', + subText: 'The database connection for which credentials will be generated.', }), type: attr('string', { label: 'Type of role',