Skip to content

Commit bc285dc

Browse files
committed
Compile JS files
1 parent 54b35f2 commit bc285dc

File tree

9 files changed

+9
-21
lines changed

9 files changed

+9
-21
lines changed

public/assets/scripts/choices.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3924,9 +3924,7 @@
39243924
var _this = this;
39253925
this._store.withTxn(function () {
39263926
_this._store.choices.forEach(function (choice) {
3927-
if (!choice.placeholder) {
3928-
_this._store.dispatch(removeChoice(choice));
3929-
}
3927+
_this._store.dispatch(removeChoice(choice));
39303928
});
39313929
});
39323930
// @todo integrate with Store

public/assets/scripts/choices.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/assets/scripts/choices.mjs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3918,9 +3918,7 @@ var Choices = /** @class */ (function () {
39183918
var _this = this;
39193919
this._store.withTxn(function () {
39203920
_this._store.choices.forEach(function (choice) {
3921-
if (!choice.placeholder) {
3922-
_this._store.dispatch(removeChoice(choice));
3923-
}
3921+
_this._store.dispatch(removeChoice(choice));
39243922
});
39253923
});
39263924
// @todo integrate with Store

public/assets/scripts/choices.search-basic.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3442,9 +3442,7 @@
34423442
var _this = this;
34433443
this._store.withTxn(function () {
34443444
_this._store.choices.forEach(function (choice) {
3445-
if (!choice.placeholder) {
3446-
_this._store.dispatch(removeChoice(choice));
3447-
}
3445+
_this._store.dispatch(removeChoice(choice));
34483446
});
34493447
});
34503448
// @todo integrate with Store

public/assets/scripts/choices.search-basic.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/assets/scripts/choices.search-basic.mjs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3436,9 +3436,7 @@ var Choices = /** @class */ (function () {
34363436
var _this = this;
34373437
this._store.withTxn(function () {
34383438
_this._store.choices.forEach(function (choice) {
3439-
if (!choice.placeholder) {
3440-
_this._store.dispatch(removeChoice(choice));
3441-
}
3439+
_this._store.dispatch(removeChoice(choice));
34423440
});
34433441
});
34443442
// @todo integrate with Store

public/assets/scripts/choices.search-prefix.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2284,9 +2284,7 @@
22842284
var _this = this;
22852285
this._store.withTxn(function () {
22862286
_this._store.choices.forEach(function (choice) {
2287-
if (!choice.placeholder) {
2288-
_this._store.dispatch(removeChoice(choice));
2289-
}
2287+
_this._store.dispatch(removeChoice(choice));
22902288
});
22912289
});
22922290
// @todo integrate with Store

public/assets/scripts/choices.search-prefix.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/assets/scripts/choices.search-prefix.mjs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2278,9 +2278,7 @@ var Choices = /** @class */ (function () {
22782278
var _this = this;
22792279
this._store.withTxn(function () {
22802280
_this._store.choices.forEach(function (choice) {
2281-
if (!choice.placeholder) {
2282-
_this._store.dispatch(removeChoice(choice));
2283-
}
2281+
_this._store.dispatch(removeChoice(choice));
22842282
});
22852283
});
22862284
// @todo integrate with Store

0 commit comments

Comments
 (0)