mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-03-10 10:33:11 +03:00
17 lines
486 B
TypeScript
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;
|