1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-04 06:06:16 +02:00

fix(frontend): MkRange/MkSelectでdisabledが効かなくなっている問題を修正 (#16263)

* fix(frontend): MkRange/MkSelectでdisabledが効かなくなっている問題を修正

* Update Changelog

* 誤字
This commit is contained in:
かっこかり
2025-07-06 19:38:09 +09:00
committed by GitHub
parent a8abb03d17
commit 89ed8be8ff
3 changed files with 10 additions and 2 deletions

View File

@@ -174,7 +174,7 @@ watch([modelValue, () => props.items], () => {
}, { immediate: true, deep: true });
function show() {
if (opening.value) return;
if (opening.value || props.disabled || props.readonly) return;
focus();
opening.value = true;