 Fixed potential null reference

This commit is contained in:
Fabio Manganiello 2025-03-26 22:11:31 +01:00
parent 87f1da7688
commit 1607b4993e
Signed by: blacklight
GPG key ID: D90FBA7F76362774

View file

@ -91,7 +91,7 @@ export default {
mounted() {
this.$nextTick(() => {
(this.$refs.username as HTMLElement).focus();
(this.$refs.username as HTMLElement | null)?.focus();
});
},
};