mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-03-12 19:37:35 +03:00
28 lines
623 B
TypeScript
28 lines
623 B
TypeScript
|
|
import type { SectionConfigOverrides } from "./types";
|
||
|
|
|
||
|
|
const timestampStyle: SectionConfigOverrides = {
|
||
|
|
base: {
|
||
|
|
sectionDocs: "/configuration/reference",
|
||
|
|
restartRequired: [],
|
||
|
|
fieldOrder: ["position", "format", "color", "thickness"],
|
||
|
|
hiddenFields: ["effect", "enabled_in_config"],
|
||
|
|
advancedFields: [],
|
||
|
|
uiSchema: {
|
||
|
|
position: {
|
||
|
|
"ui:size": "xs",
|
||
|
|
},
|
||
|
|
format: {
|
||
|
|
"ui:size": "xs",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
global: {
|
||
|
|
restartRequired: ["position", "format", "color", "thickness", "effect"],
|
||
|
|
},
|
||
|
|
camera: {
|
||
|
|
restartRequired: [],
|
||
|
|
},
|
||
|
|
};
|
||
|
|
|
||
|
|
export default timestampStyle;
|