fixed frontend (format, lint, build)

This commit is contained in:
masterElmar
2023-11-01 22:31:12 +01:00
parent a8dce8207b
commit 0fc6e249d2
10 changed files with 277 additions and 208 deletions

View File

@@ -37,23 +37,22 @@ const ModuleInformation = defineAsyncComponent(
);
async function showInfo(module: Module) {
await fetchModule(module).then((data) => {
module.value = data;
});
dialog.open(ModuleInformation, {
props: {
style: {
width: "50vw",
await fetchModule(module).then((data: Module) => {
dialog.open(ModuleInformation, {
props: {
style: {
width: "50vw",
},
breakpoints: {
"960px": "75vw",
"640px": "90vw",
},
modal: true,
},
breakpoints: {
"960px": "75vw",
"640px": "90vw",
data: {
module: data,
},
modal: true,
},
data: {
module: module,
},
});
});
}