diff --git a/changelog/11294.txt b/changelog/11294.txt new file mode 100644 index 000000000..a176b4a7b --- /dev/null +++ b/changelog/11294.txt @@ -0,0 +1,3 @@ +```release-note:bug +ui: fix issue where select-one option was not showing in secrets database role creation +``` diff --git a/ui/app/models/database/role.js b/ui/app/models/database/role.js index 7ede3475f..0ecac0fc1 100644 --- a/ui/app/models/database/role.js +++ b/ui/app/models/database/role.js @@ -22,6 +22,7 @@ export default Model.extend({ }), type: attr('string', { label: 'Type of role', + noDefault: true, possibleValues: ['static', 'dynamic'], }), ttl: attr({