mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-04-23 14:17:46 -04:00
Merge remote-tracking branch 'origin/development' into development
This commit is contained in:
commit
8087ce612f
2 changed files with 5 additions and 1 deletions
|
@ -92,6 +92,10 @@ const commandOptions: CommandOption[] = [
|
|||
option: "subtitle_id",
|
||||
description: "Provider ID of the subtitle file",
|
||||
},
|
||||
{
|
||||
option: "provider",
|
||||
description: "Provider of the subtitle file",
|
||||
},
|
||||
{
|
||||
option: "series_id",
|
||||
description: "Sonarr series ID (Empty if movie)",
|
||||
|
|
|
@ -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