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

pull/2193/head v1.2.3-beta.0
morpheus65535 1 year ago
commit 8087ce612f

@ -92,6 +92,10 @@ const commandOptions: CommandOption[] = [
option: "subtitle_id", option: "subtitle_id",
description: "Provider ID of the subtitle file", description: "Provider ID of the subtitle file",
}, },
{
option: "provider",
description: "Provider of the subtitle file",
},
{ {
option: "series_id", option: "series_id",
description: "Sonarr series ID (Empty if movie)", description: "Sonarr series ID (Empty if movie)",

@ -167,7 +167,7 @@ const ItemOverview: FunctionComponent<Props> = (props) => {
<Text inherit color="white"> <Text inherit color="white">
<Box component="span" mr={12}> <Box component="span" mr={12}>
<FontAwesomeIcon <FontAwesomeIcon
title={item?.monitored ? "unmonitored" : "monitored"} title={item?.monitored ? "monitored" : "unmonitored"}
icon={item?.monitored ? faBookmark : farBookmark} icon={item?.monitored ? faBookmark : farBookmark}
></FontAwesomeIcon> ></FontAwesomeIcon>
</Box> </Box>

Loading…
Cancel
Save