show version in production builds (#9602)

This commit is contained in:
Josh Hawkins 2024-02-05 17:55:08 -06:00 committed by GitHub
parent f4310862aa
commit 92a0705b03
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -56,6 +56,7 @@ import {
} from "./ui/sheet"; } from "./ui/sheet";
import ActivityIndicator from "./ui/activity-indicator"; import ActivityIndicator from "./ui/activity-indicator";
import { useRestart } from "@/api/ws"; import { useRestart } from "@/api/ws";
import { ENV } from "@/env";
type HeaderProps = { type HeaderProps = {
onToggleNavbar: () => void; onToggleNavbar: () => void;
@ -111,6 +112,11 @@ function Header({ onToggleNavbar }: HeaderProps) {
</div> </div>
<Heading as="h1">Frigate</Heading> <Heading as="h1">Frigate</Heading>
</div> </div>
{ENV == "production" && (
<div className="text-red-500 text-sm items-center text-right">
0.14 unstable
</div>
)}
</Link> </Link>
</div> </div>
<div className="flex flex-shrink-0 md:gap-2"> <div className="flex flex-shrink-0 md:gap-2">