mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-18 17:14:26 +03:00
small ui fix
This commit is contained in:
parent
2b1afe6073
commit
630363ffe6
@ -122,7 +122,10 @@ export default function LPRDebug() {
|
|||||||
>
|
>
|
||||||
<ToggleGroupItem
|
<ToggleGroupItem
|
||||||
value="detected"
|
value="detected"
|
||||||
className={`flex scroll-mx-10 items-center justify-between gap-2 ${viewMode == "detected" ? "" : "*:text-muted-foreground"}`}
|
className={cn(
|
||||||
|
"flex scroll-mx-10 items-center justify-between gap-2",
|
||||||
|
viewMode !== "detected" && "*:text-muted-foreground"
|
||||||
|
)}
|
||||||
data-nav-item="detected"
|
data-nav-item="detected"
|
||||||
aria-label="Select detected"
|
aria-label="Select detected"
|
||||||
>
|
>
|
||||||
@ -130,7 +133,10 @@ export default function LPRDebug() {
|
|||||||
</ToggleGroupItem>
|
</ToggleGroupItem>
|
||||||
<ToggleGroupItem
|
<ToggleGroupItem
|
||||||
value="raw"
|
value="raw"
|
||||||
className={`flex scroll-mx-10 items-center justify-between gap-2 ${viewMode == "raw" ? "" : "*:text-muted-foreground"}`}
|
className={cn(
|
||||||
|
"flex scroll-mx-10 items-center justify-between gap-2",
|
||||||
|
viewMode !== "raw" && "*:text-muted-foreground"
|
||||||
|
)}
|
||||||
data-nav-item="raw"
|
data-nav-item="raw"
|
||||||
aria-label="Select raw"
|
aria-label="Select raw"
|
||||||
>
|
>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user