Merge pull request #25 from masterElmar/16-implement-hash-for-feeds

fix:#16 fixed empty module construction
This commit is contained in:
masterElmar
2023-10-25 17:20:51 +02:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -39,7 +39,7 @@ const ModuleInformation = defineAsyncComponent(
);
async function showInfo(moduleName: string) {
const module: Ref<Module> = ref(new Module("", "", "", "", "", []));
const module: Ref<Module> = ref(new Module("", "", "", "", "", "", []));
await fetchModule(moduleName).then((data) => {
module.value = data;
});

View File

@@ -37,7 +37,7 @@ const ModuleInformation = defineAsyncComponent(
);
async function showInfo(moduleName: string) {
const module: Ref<Module> = ref(new Module("", "", "", "", "", []));
const module: Ref<Module> = ref(new Module("", "", "", "", "", "", []));
await fetchModule(moduleName).then((data) => {
module.value = data;
});