Skip to content

Commit be22a99

Browse files
committed
chore: dashboard
1 parent b09defc commit be22a99

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

dashboard/src/layouts/full/vertical-header/VerticalHeader.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,8 @@ const releasesHeader = computed(() => [
114114
// Form validation
115115
const formValid = ref(true);
116116
const passwordRules = computed(() => [
117-
(v: string) => !!v || t("core.header.accountDialog.validation.passwordRequired"),
117+
(v: string) =>
118+
!!v || t("core.header.accountDialog.validation.passwordRequired"),
118119
(v: string) =>
119120
v.length >= 12 ||
120121
t("core.header.accountDialog.validation.passwordMinLength"),
@@ -125,8 +126,7 @@ const passwordRules = computed(() => [
125126
/[a-z]/.test(v) ||
126127
t("core.header.accountDialog.validation.passwordLowercase"),
127128
(v: string) =>
128-
/\d/.test(v) ||
129-
t("core.header.accountDialog.validation.passwordDigit"),
129+
/\d/.test(v) || t("core.header.accountDialog.validation.passwordDigit"),
130130
]);
131131
const confirmPasswordRules = computed(() => [
132132
(v: string) =>

dashboard/vite.config.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ function mdiFontDownload() {
3737
}
3838
mkdirSync(mdiDest, { recursive: true });
3939
cpSync(mdiSource, mdiDest, { recursive: true });
40-
console.log("[mdi-font] Downloaded MDI fonts to public/fonts/");
40+
console.info("[mdi-font] Downloaded MDI fonts to public/fonts/");
4141
},
4242
};
4343
}

0 commit comments

Comments
 (0)