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
1 changed files with 1 additions and 1 deletions

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