diff --git a/frontend/src/components/AdditionalModuleTable.vue b/frontend/src/components/AdditionalModuleTable.vue index 3d38780..d9dec8f 100644 --- a/frontend/src/components/AdditionalModuleTable.vue +++ b/frontend/src/components/AdditionalModuleTable.vue @@ -1,10 +1,13 @@ + + + + - + + diff --git a/frontend/src/main.ts b/frontend/src/main.ts index 979ec98..e961b3d 100644 --- a/frontend/src/main.ts +++ b/frontend/src/main.ts @@ -32,6 +32,7 @@ import DynamicDialog from "primevue/dynamicdialog"; import DialogService from "primevue/dialogservice"; import ProgressSpinner from "primevue/progressspinner"; import Checkbox from "primevue/checkbox"; +import Skeleton from "primevue/skeleton"; import i18n from "./i18n"; const app = createApp(App); @@ -68,5 +69,6 @@ app.component("Column", Column); app.component("DynamicDialog", DynamicDialog); app.component("ProgressSpinner", ProgressSpinner); app.component("Checkbox", Checkbox); +app.component("Skeleton", Skeleton); app.mount("#app");