fix: accidental replacing of noteEl to rootEl

This commit is contained in:
Marie 2024-02-03 21:37:51 +01:00
parent bd0186296c
commit 23e9067f57
No known key found for this signature in database
GPG key ID: 56569BBE47D2C828

View file

@ -737,11 +737,11 @@ function showRenoteMenu(viaKeyboard = false): void {
} }
function focus() { function focus() {
rootEl.value?.focus(); noteEl.value?.focus();
} }
function blur() { function blur() {
rootEl.value?.blur(); noteEl.value?.blur();
} }
const repliesLoaded = ref(false); const repliesLoaded = ref(false);