mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-03-20 15:18:21 +03:00
31 lines
604 B
TypeScript
31 lines
604 B
TypeScript
|
|
import type { SectionConfigOverrides } from "./types";
|
||
|
|
|
||
|
|
const ui: SectionConfigOverrides = {
|
||
|
|
base: {
|
||
|
|
sectionDocs: "/configuration/reference",
|
||
|
|
restartRequired: [],
|
||
|
|
fieldOrder: ["dashboard", "order"],
|
||
|
|
hiddenFields: [],
|
||
|
|
advancedFields: [],
|
||
|
|
overrideFields: [],
|
||
|
|
},
|
||
|
|
global: {
|
||
|
|
fieldOrder: [
|
||
|
|
"timezone",
|
||
|
|
"time_format",
|
||
|
|
"date_style",
|
||
|
|
"time_style",
|
||
|
|
"unit_system",
|
||
|
|
],
|
||
|
|
advancedFields: [],
|
||
|
|
restartRequired: ["unit_system"],
|
||
|
|
uiSchema: {
|
||
|
|
timezone: {
|
||
|
|
"ui:widget": "timezoneSelect",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
};
|
||
|
|
|
||
|
|
export default ui;
|