frigate/web/src/components/config-form/sections/TimestampSection.tsx
2026-02-27 09:40:20 -06:00

17 lines
486 B
TypeScript

// Timestamp Section Component
// Reusable for both global and camera-level timestamp_style settings
import { createConfigSection } from "./BaseSection";
export const TimestampSection = createConfigSection({
sectionPath: "timestamp_style",
i18nNamespace: "config/timestamp_style",
defaultConfig: {
fieldOrder: ["position", "format", "color", "thickness"],
hiddenFields: ["effect", "enabled_in_config"],
advancedFields: [],
},
});
export default TimestampSection;