Skip to content

Commit

Permalink
Fixed: incorrect fieldList parameter in FacilityGroup entity
Browse files Browse the repository at this point in the history
  • Loading branch information
k2maan committed Dec 6, 2023
1 parent b436c28 commit 9835ba2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/ProductStorePopover.vue
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export default defineComponent({
facilityGroupId: productStoreId
},
entityName: 'FacilityGroup',
fieldList: ['facilityGroupId', 'facilityId'],
fieldList: ['facilityGroupId', 'facilityGroupTypeId'],
viewSize: 1
})
Expand Down
2 changes: 1 addition & 1 deletion src/components/VirtualFacilityActionsPopover.vue
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export default defineComponent({
facilityGroupId: 'ARCHIVE',
},
entityName: 'FacilityGroup',
fieldList: ['facilityGroupId', 'facilityId'],
fieldList: ['facilityGroupId', 'facilityGroupTypeId'],
viewSize: 1
})
Expand Down
4 changes: 2 additions & 2 deletions src/views/AddFacilityConfig.vue
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ export default defineComponent({
facilityGroupId: productStoreId
},
entityName: 'FacilityGroup',
fieldList: ['facilityGroupId', 'facilityId'],
fieldList: ['facilityGroupId', 'facilityGroupTypeId'],
viewSize: 100
})
if (!hasError(resp)) {
Expand All @@ -348,7 +348,7 @@ export default defineComponent({
facilityGroupId: this.primaryProductStoreId
},
entityName: 'FacilityGroup',
fieldList: ['facilityGroupId', 'facilityId'],
fieldList: ['facilityGroupId', 'facilityGroupTypeId'],
viewSize: 100
})
Expand Down

0 comments on commit 9835ba2

Please sign in to comment.