diff options
author | LASER-Yi <[email protected]> | 2022-08-23 22:25:55 +0800 |
---|---|---|
committer | LASER-Yi <[email protected]> | 2022-08-23 22:25:55 +0800 |
commit | d4f211f375773b52b169eecccd63e17a99d5d851 (patch) | |
tree | e7cc4b820a5aa96143eeb0b4309d776d218f4e33 /frontend/src/components/modals/ManualSearchModal.tsx | |
parent | 8eef455cc59193be0266612c42a66e5b413b3c38 (diff) | |
download | bazarr-d4f211f375773b52b169eecccd63e17a99d5d851.tar.gz bazarr-d4f211f375773b52b169eecccd63e17a99d5d851.zip |
Fix #1917, bring back sceneName in manual search modal
Diffstat (limited to 'frontend/src/components/modals/ManualSearchModal.tsx')
-rw-r--r-- | frontend/src/components/modals/ManualSearchModal.tsx | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/frontend/src/components/modals/ManualSearchModal.tsx b/frontend/src/components/modals/ManualSearchModal.tsx index 5c3d96066..2e2a7ffb0 100644 --- a/frontend/src/components/modals/ManualSearchModal.tsx +++ b/frontend/src/components/modals/ManualSearchModal.tsx @@ -17,6 +17,7 @@ import { Anchor, Badge, Button, + Code, Collapse, Divider, Group, @@ -26,6 +27,7 @@ import { Text, } from "@mantine/core"; import { useHover } from "@mantine/hooks"; +import { isString } from "lodash"; import { FunctionComponent, useCallback, useMemo, useState } from "react"; import { UseQueryResult } from "react-query"; import { Column } from "react-table"; @@ -186,6 +188,9 @@ function ManualSearchView<T extends SupportType>(props: Props<T>) { [download, item] ); + const bSceneNameAvailable = + isString(item.sceneName) && item.sceneName.length !== 0; + return ( <Stack> <Alert @@ -193,7 +198,9 @@ function ManualSearchView<T extends SupportType>(props: Props<T>) { color="gray" icon={<FontAwesomeIcon icon={faInfoCircle}></FontAwesomeIcon>} > - {item?.path} + <Text size="sm">{item?.path}</Text> + <Divider hidden={!bSceneNameAvailable} my="xs"></Divider> + <Code hidden={!bSceneNameAvailable}>{item?.sceneName}</Code> </Alert> <Collapse in={!isStale && !results.isFetching}> <PageTable |