mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-18 09:04:28 +03:00
small ui fix
This commit is contained in:
parent
2b1afe6073
commit
630363ffe6
@ -122,7 +122,10 @@ export default function LPRDebug() {
|
||||
>
|
||||
<ToggleGroupItem
|
||||
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"
|
||||
aria-label="Select detected"
|
||||
>
|
||||
@ -130,7 +133,10 @@ export default function LPRDebug() {
|
||||
</ToggleGroupItem>
|
||||
<ToggleGroupItem
|
||||
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"
|
||||
aria-label="Select raw"
|
||||
>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user