added format command and added trailing commas to reduce conflicts

This commit is contained in:
dswbx
2025-02-26 20:06:03 +01:00
parent 88b5359f1c
commit 7743f71a11
414 changed files with 3622 additions and 3610 deletions

View File

@@ -20,7 +20,7 @@ function SettingsSidebar() {
const modules = Object.keys(schema).map((key) => {
return {
title: schema[key].title ?? ucFirst(key),
key
key,
};
});
@@ -86,25 +86,25 @@ const uiSchema = {
server: {
cors: {
allow_methods: {
"ui:widget": "checkboxes"
"ui:widget": "checkboxes",
},
allow_headers: {
"ui:options": {
orderable: false
}
}
}
orderable: false,
},
},
},
},
media: {
adapter: {
"ui:options": {
label: false
}
label: false,
},
/*type: {
"ui:widget": "hidden"
}*/
}
}
},
},
};
const SettingRoutesRoutes = () => {
@@ -112,7 +112,7 @@ const SettingRoutesRoutes = () => {
console.log("flows", {
schema: schema.flows,
config: config.flows
config: config.flows,
});
return (