mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-03-10 10:33:11 +03:00
18 lines
427 B
TypeScript
18 lines
427 B
TypeScript
// Birdseye Section Component
|
|
// Camera-level birdseye settings
|
|
|
|
import { createConfigSection } from "./BaseSection";
|
|
|
|
export const BirdseyeSection = createConfigSection({
|
|
sectionPath: "birdseye",
|
|
i18nNamespace: "config/global",
|
|
defaultConfig: {
|
|
fieldOrder: ["enabled", "mode", "order"],
|
|
hiddenFields: [],
|
|
advancedFields: [],
|
|
overrideFields: ["enabled", "mode"],
|
|
},
|
|
});
|
|
|
|
export default BirdseyeSection;
|