From 4735adcb66005b6cc68e3f22372d691f1ce326a7 Mon Sep 17 00:00:00 2001 From: Matthew Yung <117509016+myung03@users.noreply.github.com> Date: Wed, 26 Jun 2024 13:35:53 -0700 Subject: [PATCH] fixed issue with tag assign mode (#2570) --- interface/app/$libraryId/Explorer/ExplorerTagBar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/app/$libraryId/Explorer/ExplorerTagBar.tsx b/interface/app/$libraryId/Explorer/ExplorerTagBar.tsx index 38060d43e..aca3ec3f1 100644 --- a/interface/app/$libraryId/Explorer/ExplorerTagBar.tsx +++ b/interface/app/$libraryId/Explorer/ExplorerTagBar.tsx @@ -154,7 +154,7 @@ export const ExplorerTagBar = () => { // extract the list of tags from each object in the selected items const targetsTagList = Array.from(explorer.selectedItems.entries()).map( // issues with type here. unsure as to why, and not causing any noticeable errors, so ignoring for now with as any - (item) => (item[0] as any).object.item.tags + (item) => (item[0] as any).item.object.tags ); // iterate through each tag in the selected items and check if the tag we want to assign is already assigned