File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
frontend/src/views/system/authentication Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ const form_config_list = ref<any[]>([
7676const validateUrl = (rule , value , callback ) => {
7777 const reg = new RegExp (/ (http| https):\/\/ ([\w. ] + \/ ? )\S * / )
7878 if (! reg .test (value )) {
79- callback (new Error (t (' system.incorrect_please_re_enter_de ' )))
79+ callback (new Error (t (' authentication.incorrect_please_re_enter ' )))
8080 } else {
8181 callback ()
8282 }
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ const state = reactive({
2828const validateUrl = (rule , value , callback ) => {
2929 const reg = new RegExp (/ (http| https):\/\/ ([\w. ] + \/ ? )\S * / )
3030 if (! reg .test (value )) {
31- callback (new Error (t (' system .incorrect_please_re_enter' )))
31+ callback (new Error (t (' authentication .incorrect_please_re_enter' )))
3232 } else {
3333 callback ()
3434 }
You can’t perform that action at this time.
0 commit comments