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