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