Skip to content

Commit 0b8f5fd

Browse files
committed
Fix workspace item in breadcrumbs
1 parent d44782d commit 0b8f5fd

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

src/lib/v2/mappers/local/topbarBreadcrumbs.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import {
33
mdiArchive,
44
mdiFileDocumentOutline,
55
mdiFolderPlusOutline,
6-
mdiLock,
76
mdiPencil,
87
mdiTextBoxPlusOutline,
98
mdiTrashCanOutline,
@@ -369,7 +368,6 @@ export function mapStorageBreadcrumb(
369368
item: workspace,
370369
label: workspace.name,
371370
active: true,
372-
icon: mdiLock, // Default workspace Icon/Emoji
373371
parentId: topParentId,
374372
link: {
375373
href: getWorkspaceHref(workspace),

src/lib/v2/mappers/local/topbarTree.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ export function mapTopBarTree(
2020
const items = new Map<string, BreadCrumbTreeItem[]>()
2121

2222
const [notes, folders] = [values(noteMap), values(foldersMap)]
23-
// todo: maybe implement all file system storages and navigate through them?
24-
const href = `/app/storage/${storage.id}`
23+
const href = `/app/storages/${storage.id}`
2524
items.set(topParentId, [
2625
{
2726
id: storage.id,

0 commit comments

Comments
 (0)