1
0
Fork 0
mirror of synced 2024-07-04 05:50:57 +12:00

Fix bug which caused autolinks to not be generated

This commit is contained in:
Andrew Kingston 2020-12-08 15:21:01 +00:00
parent e16e909c65
commit ff3e79696d

View file

@ -70,7 +70,7 @@ export const allScreens = derived(store, $store => {
export const mainLayout = derived(store, $store => {
return $store.layouts?.find(
layout => layout.props?._id === LAYOUT_NAMES.MASTER.PRIVATE
layout => layout._id === LAYOUT_NAMES.MASTER.PRIVATE
)
})