fix: check access before updating base

This commit is contained in:
Ramesh Mane
2026-02-24 08:28:21 +00:00
parent fb4160a52d
commit de4c608496

View File

@@ -91,6 +91,8 @@ const handleDelete = () => {
}
const handleColorChange = (color: string) => {
if (!isOptionVisible.value.baseRename) return
onUpdateColor(props.base, color)
}