1
0
Fork 0
mirror of synced 2024-07-19 21:26:22 +12:00

fix returning app Ids

This commit is contained in:
NEOLPAR 2022-08-12 11:48:51 +01:00
parent 9ec850842b
commit f883f36405

View file

@ -22,7 +22,7 @@
if (!detail) return
const groupSelected = $groups.find(x => x._id === detail)
const appIds = groupSelected?.apps.map(x => x.appId) || null
const appIds = groupSelected?.apps || null
dispatch("change", appIds)
}