Skip to content

Commit 35be543

Browse files
committed
Fix formatting
1 parent 3e3b08b commit 35be543

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/Autocomplete/assets/dist/controller.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,8 @@ class default_1 extends Controller {
183183
}
184184
break;
185185
}
186-
if (mutation.target === this.element && mutation.attributeName.match(/data-(symfony--ux-)?autocomplete/)) {
186+
if (mutation.target === this.element &&
187+
mutation.attributeName.match(/data-(symfony--ux-)?autocomplete/)) {
187188
requireReset = true;
188189
break;
189190
}

src/Autocomplete/assets/src/controller.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,10 @@ export default class extends Controller {
402402
break;
403403
}
404404

405-
if (mutation.target === this.element && mutation.attributeName.match(/data-(symfony--ux-)?autocomplete/)) {
405+
if (
406+
mutation.target === this.element &&
407+
mutation.attributeName.match(/data-(symfony--ux-)?autocomplete/)
408+
) {
406409
requireReset = true;
407410

408411
break;

0 commit comments

Comments
 (0)