Skip to content

Commit

Permalink
Merged in bugfix/SHIBUI-2309-cea-list (pull request #584)
Browse files Browse the repository at this point in the history
Bugfix/SHIBUI-2309 cea list

Approved-by: Bill Smith
  • Loading branch information
rmathis committed Jun 29, 2022
2 parents 9b13a7e + 422812b commit 160a160
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ class SeleniumSIDETest extends Specification {
'SHIBUI-1391: Regex Validation' | '/SHIBUI-1391.side'
'SHIBUI-1407: Metadata source comparison highlights' | '/SHIBUI-1407-1.side'
'SHIBUI-1407: Metadata provider comparison highlights' | '/SHIBUI-1407-2.side'
// 'SHIBUI-1503: Non-admin can create metadata source' | '/SHIBUI-1503-1.side' // Broken in this branch until UI fixes in
'SHIBUI-1503: Non-admin can create metadata source' | '/SHIBUI-1503-1.side'
'SHIBUI-1503: User can be deleted' | '/SHIBUI-1503-2.side'
'SHIBUI-1503: User can be enabled' | '/SHIBUI-1503-3.side'
'SHIBUI-1732: Create, use, and delete CEA String' | '/SHIBUI-1732-1.side'
Expand Down
2 changes: 1 addition & 1 deletion ui/src/app/metadata/hooks/utility.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export const assignValueToProperties = (models, properties, definition, schema)
...prop.items,
enum: prop.items.enum.map((item, index) => ({
key: item,
label: `${prop?.items?.enumNames[index] || item}`,
label: `${prop?.items?.enumNames ? prop?.items?.enumNames[index] : item}`,
differences: models
.map((model) => {
const value = model[prop.id];
Expand Down

0 comments on commit 160a160

Please sign in to comment.