Skip to content

Commit 5caec4c

Browse files
author
yaroslav8765
committed
fix: fix error message in console on the login page
1 parent b893496 commit 5caec4c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adminforth/spa/src/views/LoginView.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,8 @@ import { useI18n } from 'vue-i18n';
141141
142142
const { t } = useI18n();
143143
144-
const passwordInput = ref<HTMLInputElement | null>(null)
145-
const usernameInput = ref<HTMLInputElement | null>(null)
144+
const passwordInput = ref(null)
145+
const usernameInput = ref(null)
146146
const rememberMeValue= ref(false);
147147
const username = ref('');
148148
const password = ref('');

0 commit comments

Comments
 (0)