mirror of
https://github.com/DI0IK/homepage-plus.git
synced 2025-07-10 15:28:47 +00:00
Add setting to hide widgets on failure
This commit is contained in:
parent
3d654e03c6
commit
bd1c2b1881
84 changed files with 103 additions and 93 deletions
|
@ -257,6 +257,7 @@ export function cleanServiceGroups(groups) {
|
|||
const {
|
||||
type, // all widgets
|
||||
fields,
|
||||
hideErrors,
|
||||
server, // docker widget
|
||||
container,
|
||||
currency, // coinmarketcap widget
|
||||
|
@ -269,7 +270,7 @@ export function cleanServiceGroups(groups) {
|
|||
wan, // opnsense widget,
|
||||
enableBlocks, // emby/jellyfin
|
||||
enableNowPlaying,
|
||||
volume // diskstation widget
|
||||
volume, // diskstation widget
|
||||
} = cleanedService.widget;
|
||||
|
||||
const fieldsList = typeof fields === 'string' ? JSON.parse(fields) : fields;
|
||||
|
@ -277,6 +278,7 @@ export function cleanServiceGroups(groups) {
|
|||
cleanedService.widget = {
|
||||
type,
|
||||
fields: fieldsList || null,
|
||||
hide_errors: hideErrors || false,
|
||||
service_name: service.name,
|
||||
service_group: serviceGroup.name,
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue