File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -114,7 +114,8 @@ const releasesHeader = computed(() => [
114114// Form validation
115115const formValid = ref (true );
116116const 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]);
131131const confirmPasswordRules = computed (() => [
132132 (v : string ) =>
Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments