Skip to content

Commit 20174fd

Browse files
committed
Fix all items list is not showing
1 parent 51765e6 commit 20174fd

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

lib/page.tsx

+5
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,11 @@ export const Page: FC = () => {
9292
break
9393
}
9494

95+
if (state.location.parent.key === 'all') {
96+
setListTitle('All Items')
97+
break
98+
}
99+
95100
storage.getSiteEntries(state.location.parent.key).then((entries) => {
96101
if (entries.length === 0) return
97102
setListTitle(entries[0].site.title)

0 commit comments

Comments
 (0)