mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
fix: showing unarchive as the tooltip when the item is in library and vice versa
This commit is contained in:
parent
cd8f47acad
commit
a3beb48237
1 changed files with 1 additions and 1 deletions
|
|
@ -75,7 +75,7 @@ export const LibraryHoverActions = (props: LibraryHoverActionsProps) => {
|
|||
/>
|
||||
</Button>
|
||||
<Button
|
||||
title={props.item.isArchived ? 'Archive (e)' : 'Unarchive (e)'}
|
||||
title={props.item.isArchived ? 'Unarchive (e)' : 'Archive (e)'}
|
||||
style="hoverActionIcon"
|
||||
onClick={(event) => {
|
||||
const action = props.item.isArchived ? 'unarchive' : 'archive'
|
||||
|
|
|
|||
Loading…
Reference in a new issue