mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-04-23 14:17:46 -04:00
Fixed monitored status tooltip for series/movie view
This commit is contained in:
parent
b17a2a5f4a
commit
59d00f28d0
1 changed files with 1 additions and 1 deletions
|
@ -167,7 +167,7 @@ const ItemOverview: FunctionComponent<Props> = (props) => {
|
|||
<Text inherit color="white">
|
||||
<Box component="span" mr={12}>
|
||||
<FontAwesomeIcon
|
||||
title={item?.monitored ? "unmonitored" : "monitored"}
|
||||
title={item?.monitored ? "monitored" : "unmonitored"}
|
||||
icon={item?.monitored ? faBookmark : farBookmark}
|
||||
></FontAwesomeIcon>
|
||||
</Box>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue