Skip to content

Commit

Permalink
fix 3238 - detachIndicatorClickHandler not found (#3239)
Browse files Browse the repository at this point in the history
  • Loading branch information
rpodevns authored Jan 23, 2025
1 parent cc455c1 commit dfedb4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core/Components/List/FluentCombobox.razor.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export function attachIndicatorClickHandler(id) {
handlers.set(id, { indicator, clickHandler });
}

export function detachHandlers(id) {
export function detachIndicatorClickHandler(id) {
const handler = handlers.get(id);
if (handler) {
const { indicator, clickHandler } = handler;
Expand Down

0 comments on commit dfedb4f

Please sign in to comment.