mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-06-29 16:41:16 +03:00
Some checks failed
CI / AMD64 Build (push) Has been cancelled
CI / ARM Build (push) Has been cancelled
CI / Jetson Jetpack 6 (push) Has been cancelled
CI / AMD64 Extra Build (push) Has been cancelled
CI / ARM Extra Build (push) Has been cancelled
CI / Synaptics Build (push) Has been cancelled
CI / Assemble and push default build (push) Has been cancelled
* add live streams widget * i18n * docs
31 lines
704 B
TypeScript
31 lines
704 B
TypeScript
import type { SectionConfigOverrides } from "./types";
|
|
|
|
const live: SectionConfigOverrides = {
|
|
base: {
|
|
sectionDocs: "/configuration/live",
|
|
restartRequired: [],
|
|
fieldOrder: ["streams", "height", "quality"],
|
|
fieldGroups: {},
|
|
hiddenFields: ["enabled_in_config"],
|
|
advancedFields: ["height", "quality"],
|
|
},
|
|
global: {
|
|
restartRequired: ["streams", "height", "quality"],
|
|
hiddenFields: ["streams"],
|
|
},
|
|
camera: {
|
|
restartRequired: ["height", "quality"],
|
|
uiSchema: {
|
|
streams: {
|
|
"ui:field": "LiveStreamsField",
|
|
"ui:options": {
|
|
label: false,
|
|
suppressDescription: true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
export default live;
|