- {{
- t('additionalModules.footerModulesSelected', { count: store?.countModules() ?? 0 })
- }}
+ {{
+ t("additionalModules.footerModulesSelected", {
+ count: store?.countModules() ?? 0,
+ })
+ }}
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");