mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-04-16 20:12:11 +03:00
chore: The Explore search function also displays the Camera's nickname in English
This commit is contained in:
parent
7f655cc77d
commit
4a5f7bd6a3
@ -928,7 +928,15 @@ export default function InputWithTags({
|
|||||||
onSelect={() => handleSuggestionClick(suggestion)}
|
onSelect={() => handleSuggestionClick(suggestion)}
|
||||||
>
|
>
|
||||||
{i18n.language === "en" ? (
|
{i18n.language === "en" ? (
|
||||||
suggestion
|
currentFilterType && currentFilterType === "cameras" ? (
|
||||||
|
<>
|
||||||
|
{suggestion} {" ("}{" "}
|
||||||
|
<CameraNameLabel camera={suggestion} />
|
||||||
|
{")"}
|
||||||
|
</>
|
||||||
|
) : (
|
||||||
|
suggestion
|
||||||
|
)
|
||||||
) : (
|
) : (
|
||||||
<>
|
<>
|
||||||
{suggestion} {" ("}
|
{suggestion} {" ("}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user