fix returning app Ids
This commit is contained in:
parent
2061dd2882
commit
d5aca938f4
|
@ -22,7 +22,7 @@
|
||||||
if (!detail) return
|
if (!detail) return
|
||||||
|
|
||||||
const groupSelected = $groups.find(x => x._id === detail)
|
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)
|
dispatch("change", appIds)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue