From 82db51b24e4568a4d04a5075cbb24a3f3b3c993f Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Thu, 22 Feb 2024 15:30:36 +0800 Subject: [PATCH] Correct the archive icon --- .../Sources/App/Views/Home/LibraryItemMenu.swift | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/apple/OmnivoreKit/Sources/App/Views/Home/LibraryItemMenu.swift b/apple/OmnivoreKit/Sources/App/Views/Home/LibraryItemMenu.swift index 7e8bda89a..76b369d08 100644 --- a/apple/OmnivoreKit/Sources/App/Views/Home/LibraryItemMenu.swift +++ b/apple/OmnivoreKit/Sources/App/Views/Home/LibraryItemMenu.swift @@ -15,7 +15,12 @@ import Views ) Button( action: { viewModel.setLinkArchived(dataService: dataService, objectID: item.objectID, archived: !item.isArchived) }, - label: { Label(item.isArchived ? "Unarchive" : "Archive", systemImage: "inbox") } + label: { + Label( + item.isArchived ? "Unarchive" : "Archive", + systemImage: item.isArchived ? "tray.and.arrow.down.fill" : "archivebox" + ) + } ) Button( action: { viewModel.removeLibraryItem(dataService: dataService, objectID: item.objectID) },