We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b5c424 commit 7768a46Copy full SHA for 7768a46
src/BootstrapBlazor/Components/AutoComplete/AutoComplete.razor.js
@@ -121,7 +121,7 @@ export function init(id, invoke) {
121
}
122
123
124
- ac.blur = function() {
+ ac.blur = function () {
125
const { input, invoke } = this;
126
const triggerBlur = input.getAttribute('data-bb-blur') === 'true';
127
if (triggerBlur) {
@@ -195,7 +195,7 @@ export function dispose(id) {
195
const { AutoComplete } = window.BootstrapBlazor;
196
AutoComplete.dispose(id, () => {
197
EventHandler.off(document, 'click', ac.closePopover);
198
- EventHandler.off(document, 'keyup', ac.blur);
+ EventHandler.off(document, 'keyup', ac.keyup);
199
});
200
201
0 commit comments