Skip to content

Commit

Permalink
Update condition for error message in Mhr Transfers (#1960)
Browse files Browse the repository at this point in the history
  • Loading branch information
dimak1 authored Jul 2, 2024
1 parent bdd4640 commit 015089c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ppr-ui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ppr-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ppr-ui",
"version": "3.2.29",
"version": "3.2.30",
"private": true,
"appName": "Assets UI",
"sbcName": "SBC Common Components",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -974,7 +974,7 @@ export default defineComponent({
const isEmptyGroup = group.owners.every(owner => owner.action === ActionTypes.REMOVED)
// mark empty groups as removed to show the 'No owners added yet' error
if (isEmptyGroup) {
if (isEmptyGroup && !showGroups.value) {
group.action = ActionTypes.REMOVED
}
Expand Down

0 comments on commit 015089c

Please sign in to comment.