1
0
Fork 0
mirror of synced 2024-09-20 11:27:56 +12:00

Fix access filter not working

This commit is contained in:
Andrew Kingston 2022-08-04 15:32:51 +01:00
parent 0bd18c66f7
commit 06cd87aa2e

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)
}
</script>