Skip to content

Commit 9fbf547

Browse files
committed
make synthetic change event bubble
1 parent 2c3fc50 commit 9fbf547

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • vaadin-grid-pro-flow-parent/vaadin-grid-pro-flow/src/main/resources/META-INF/resources/frontend

vaadin-grid-pro-flow-parent/vaadin-grid-pro-flow/src/main/resources/META-INF/resources/frontend/gridProConnector.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ window.Vaadin.Flow.gridProConnector = {
7272
// change event when an input loses focus.
7373
component.addEventListener('focusout', (e) => {
7474
if (e.target instanceof HTMLInputElement) {
75-
e.target.dispatchEvent(new Event('change'));
75+
e.target.dispatchEvent(new Event('change', { bubbles: true }));
7676
}
7777
});
7878
component.__firefoxChangeWorkaroundInstalled = true;

0 commit comments

Comments
 (0)