Skip to content

Commit 64c7d48

Browse files
committed
refactor: 使用服务器端传递的回调方法名称
1 parent dcc1384 commit 64c7d48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/BootstrapBlazor/Components/AutoComplete/AutoComplete.razor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export function init(id, invoke, options) {
6767

6868
if (changedEventCallback) {
6969
EventHandler.on(input, 'change', e => {
70-
invoke.invokeMethodAsync('TriggerChange', e.target.value);
70+
invoke.invokeMethodAsync(changedEventCallback, e.target.value);
7171
});
7272
}
7373

0 commit comments

Comments
 (0)