Skip to content

Commit a617ad1

Browse files
committed
Fix formatting
1 parent 24639c1 commit a617ad1

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
@@ -453,7 +453,10 @@ export default class extends Controller {
453453
break;
454454
}
455455

456-
if (mutation.target === this.element && mutation.attributeName.match(/data-(symfony--ux-)?autocomplete/)) {
456+
if (
457+
mutation.target === this.element &&
458+
mutation.attributeName.match(/data-(symfony--ux-)?autocomplete/)
459+
) {
457460
requireReset = true;
458461

459462
break;

0 commit comments

Comments
 (0)