Skip to content

Commit dff60f0

Browse files
committed
fix: update inputClick logic to only check readonly prop
1 parent 7fc89e7 commit dff60f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adminforth/spa/src/afcl/Select.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ function updateFromProps() {
187187
}
188188
189189
async function inputClick() {
190-
if (props.readonly || props.searchDisabled) return;
190+
if (props.readonly) return;
191191
// Toggle local dropdown
192192
showDropdown.value = !showDropdown.value;
193193
// If the dropdown is about to close, reset the search

0 commit comments

Comments
 (0)