Merge remote-tracking branch 'origin/development' into development

This commit is contained in:
morpheus65535 2023-07-03 18:28:48 -04:00
commit 8087ce612f
2 changed files with 5 additions and 1 deletions

View File

@ -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)",

View File

@ -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>