diff --git a/dashboard/src/layouts/full/vertical-header/VerticalHeader.vue b/dashboard/src/layouts/full/vertical-header/VerticalHeader.vue index 5fde6c01d..ed684f43b 100644 --- a/dashboard/src/layouts/full/vertical-header/VerticalHeader.vue +++ b/dashboard/src/layouts/full/vertical-header/VerticalHeader.vue @@ -114,7 +114,8 @@ const releasesHeader = computed(() => [ // Form validation const formValid = ref(true); const passwordRules = computed(() => [ - (v: string) => !!v || t("core.header.accountDialog.validation.passwordRequired"), + (v: string) => + !!v || t("core.header.accountDialog.validation.passwordRequired"), (v: string) => v.length >= 12 || t("core.header.accountDialog.validation.passwordMinLength"), @@ -125,8 +126,7 @@ const passwordRules = computed(() => [ /[a-z]/.test(v) || t("core.header.accountDialog.validation.passwordLowercase"), (v: string) => - /\d/.test(v) || - t("core.header.accountDialog.validation.passwordDigit"), + /\d/.test(v) || t("core.header.accountDialog.validation.passwordDigit"), ]); const confirmPasswordRules = computed(() => [ (v: string) => diff --git a/dashboard/vite.config.mts b/dashboard/vite.config.mts index f8f799e3a..4b179d854 100644 --- a/dashboard/vite.config.mts +++ b/dashboard/vite.config.mts @@ -37,7 +37,7 @@ function mdiFontDownload() { } mkdirSync(mdiDest, { recursive: true }); cpSync(mdiSource, mdiDest, { recursive: true }); - console.log("[mdi-font] Downloaded MDI fonts to public/fonts/"); + console.info("[mdi-font] Downloaded MDI fonts to public/fonts/"); }, }; }