mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-15 15:45:27 +03:00
tiny grammar fix for Frigate+ buttons
This commit is contained in:
parent
89ca085b94
commit
12550e8ac6
@ -655,7 +655,7 @@ function ObjectSnapshotTab({
|
||||
onSubmitToPlus(false);
|
||||
}}
|
||||
>
|
||||
This is a {search?.label}
|
||||
This is {search?.label?.startsWith("a") ? "an" : "a"} {search?.label}
|
||||
</Button>
|
||||
<Button
|
||||
className="text-white"
|
||||
@ -666,7 +666,7 @@ function ObjectSnapshotTab({
|
||||
onSubmitToPlus(true);
|
||||
}}
|
||||
>
|
||||
This is not a {search?.label}
|
||||
This is not {search?.label?.startsWith("a") ? "an" : "a"} {search?.label}
|
||||
</Button>
|
||||
</>
|
||||
)}
|
||||
|
||||
@ -144,7 +144,7 @@ export function FrigatePlusDialog({
|
||||
onSubmitToPlus(false);
|
||||
}}
|
||||
>
|
||||
This is a {upload?.label}
|
||||
This is {upload?.label?.startsWith("a") ? "an" : "a"} {upload?.label}
|
||||
</Button>
|
||||
<Button
|
||||
className="text-white"
|
||||
@ -155,7 +155,7 @@ export function FrigatePlusDialog({
|
||||
onSubmitToPlus(true);
|
||||
}}
|
||||
>
|
||||
This is not a {upload?.label}
|
||||
This is not {upload?.label?.startsWith("a") ? "an" : "a"} {upload?.label}
|
||||
</Button>
|
||||
</>
|
||||
)}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user