Skip to content

Commit

Permalink
fix: opening right sidebar in spaces or shares overview
Browse files Browse the repository at this point in the history
  • Loading branch information
kulmann committed Dec 7, 2023
1 parent 7676e11 commit 86bf0ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/web-pkg/src/components/SideBar/FileSideBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export default defineComponent({
return {
root: props.space,
parent: null,
items: [unref(currentFolder)]
items: unref(currentFolder) ? [unref(currentFolder)] : []
}
}
return {
Expand Down

0 comments on commit 86bf0ab

Please sign in to comment.