You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Frontend: Drop chip-selector blur commit hook entirely photoprism#4966
The previous fix (a81082a) kept @blur="onInputBlur" with a
relatedTarget guard so ArrowDown navigation wouldn't commit typed
prefixes. In practice the blur hook had no reachable trigger left
once that guard was in place — neither Tab nor click-outside
actually fired the commit. Drop the @blur binding and the
onInputBlur helper entirely; commits now happen only on Enter
(`onEnter`) or when v-combobox emits a real item-object selection
(`onComboboxChange`). Pending typed text is discarded when focus
leaves the field, which matches how the sidebar combobox already
behaves. Test pin rewritten to assert both halves of the contract:
ArrowDown does not commit, Enter still does.
0 commit comments