From fadb97ef52427a6222ab8943c26f89973390690d Mon Sep 17 00:00:00 2001 From: "Thomas F. K. Jorna" Date: Sun, 17 Oct 2021 02:30:01 +0200 Subject: fix(#118): link bugfixes --- components/Sidebar/TagBar.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'components/Sidebar/TagBar.tsx') diff --git a/components/Sidebar/TagBar.tsx b/components/Sidebar/TagBar.tsx index 0fe0a18..f58fe38 100644 --- a/components/Sidebar/TagBar.tsx +++ b/components/Sidebar/TagBar.tsx @@ -18,12 +18,12 @@ export const TagBar = (props: TagBarProps) => { const { filter, setFilter, tagColors, setTagColors, openContextMenu, previewNode } = props const node = previewNode as OrgRoamNode - if (!node.tags || node?.tags[0] === null) { + if (!node?.tags || node?.tags?.[0] === null) { return null } return ( - {node?.tags?.map((tag: string) => { + {node?.tags?.map?.((tag: string) => { const bl: string[] = filter.tagsBlacklist ?? [] const wl: string[] = filter.tagsWhitelist ?? [] const blackList: boolean = bl.includes(tag) -- cgit v1.2.3