File tree 2 files changed +6
-8
lines changed
target-profiles/badge-form
2 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -80,18 +80,17 @@ export default class TubesSelection extends Component {
80
80
if (this .selectedTubeIds .includes (tube .id )) {
81
81
return ;
82
82
}
83
- this .selectedTubeIds . pushObject ( tube .id ) ;
83
+ this .selectedTubeIds = [ ... this . selectedTubeIds , tube .id ] ;
84
84
85
85
this ._triggerOnChange ();
86
86
}
87
87
88
88
@action
89
89
uncheckTube (tube ) {
90
- const index = this .selectedTubeIds .indexOf (tube .id );
91
- if (index === - 1 ) {
90
+ if (! this .selectedTubeIds .includes (tube .id )) {
92
91
return ;
93
92
}
94
- this .selectedTubeIds . removeAt (index );
93
+ this .selectedTubeIds = this . selectedTubeIds . filter (( id ) => id !== tube . id );
95
94
96
95
this ._triggerOnChange ();
97
96
}
Original file line number Diff line number Diff line change @@ -30,18 +30,17 @@ export default class CappedTubesCriterion extends Component {
30
30
if (this .selectedTubeIds .includes (tube .id )) {
31
31
return ;
32
32
}
33
- this .selectedTubeIds . pushObject ( tube .id ) ;
33
+ this .selectedTubeIds = [ ... this . selectedTubeIds , tube .id ] ;
34
34
35
35
this ._triggerOnChange ();
36
36
}
37
37
38
38
@action
39
39
uncheckTube (tube ) {
40
- const index = this .selectedTubeIds .indexOf (tube .id );
41
- if (index === - 1 ) {
40
+ if (! this .selectedTubeIds .includes (tube .id )) {
42
41
return ;
43
42
}
44
- this .selectedTubeIds . removeAt (index );
43
+ this .selectedTubeIds = this . selectedTubeIds . filter (( id ) => id !== tube . id );
45
44
46
45
this ._triggerOnChange ();
47
46
}
You can’t perform that action at this time.
0 commit comments