Skip to content

Commit

Permalink
fix: right sidebar in trashbin views
Browse files Browse the repository at this point in the history
  • Loading branch information
kulmann committed Dec 7, 2023
1 parent 73dd5f2 commit 4200b4d
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) ? [unref(currentFolder)] : []
items: unref(currentFolder)?.id ? [unref(currentFolder)] : []
}
}
return {
Expand Down

0 comments on commit 4200b4d

Please sign in to comment.