Skip to content

Commit f329f06

Browse files
committed
refactor: deprecate-array-prototype-extensions - removeAt()
1 parent d946fa6 commit f329f06

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

admin/app/components/common/tubes-selection.gjs

+3-4
Original file line numberDiff line numberDiff line change
@@ -80,18 +80,17 @@ export default class TubesSelection extends Component {
8080
if (this.selectedTubeIds.includes(tube.id)) {
8181
return;
8282
}
83-
this.selectedTubeIds.pushObject(tube.id);
83+
this.selectedTubeIds = [...this.selectedTubeIds, tube.id];
8484

8585
this._triggerOnChange();
8686
}
8787

8888
@action
8989
uncheckTube(tube) {
90-
const index = this.selectedTubeIds.indexOf(tube.id);
91-
if (index === -1) {
90+
if (!this.selectedTubeIds.includes(tube.id)) {
9291
return;
9392
}
94-
this.selectedTubeIds.removeAt(index);
93+
this.selectedTubeIds = this.selectedTubeIds.filter((id) => id !== tube.id);
9594

9695
this._triggerOnChange();
9796
}

admin/app/components/target-profiles/badge-form/capped-tubes-criterion.gjs

+3-4
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,17 @@ export default class CappedTubesCriterion extends Component {
3030
if (this.selectedTubeIds.includes(tube.id)) {
3131
return;
3232
}
33-
this.selectedTubeIds.pushObject(tube.id);
33+
this.selectedTubeIds = [...this.selectedTubeIds, tube.id];
3434

3535
this._triggerOnChange();
3636
}
3737

3838
@action
3939
uncheckTube(tube) {
40-
const index = this.selectedTubeIds.indexOf(tube.id);
41-
if (index === -1) {
40+
if (!this.selectedTubeIds.includes(tube.id)) {
4241
return;
4342
}
44-
this.selectedTubeIds.removeAt(index);
43+
this.selectedTubeIds = this.selectedTubeIds.filter((id) => id !== tube.id);
4544

4645
this._triggerOnChange();
4746
}

0 commit comments

Comments
 (0)