File tree 2 files changed +6
-5
lines changed
admin/app/components/certification-centers
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -53,11 +53,11 @@ export default class CertificationCenterForm extends Component {
53
53
54
54
@action
55
55
updateGrantedHabilitation (habilitation ) {
56
- const habilitations = this .habilitations ;
57
- if (habilitations . includes (habilitation) ) {
58
- habilitations .removeObject (habilitation );
56
+ const index = this .habilitations . indexOf (habilitation) ;
57
+ if (index !== - 1 ) {
58
+ this . habilitations .splice (index, 1 );
59
59
} else {
60
- habilitations .push (habilitation);
60
+ this . habilitations .push (habilitation);
61
61
}
62
62
}
63
63
Original file line number Diff line number Diff line change @@ -43,7 +43,8 @@ export default class InformationEdit extends Component {
43
43
async updateGrantedHabilitation (habilitation ) {
44
44
const habilitations = await this .form .habilitations ;
45
45
if (habilitations .includes (habilitation)) {
46
- habilitations .removeObject (habilitation);
46
+ const index = habilitations .indexOf (habilitation);
47
+ habilitations .splice (index, 1 );
47
48
} else {
48
49
habilitations .push (habilitation);
49
50
}
You can’t perform that action at this time.
0 commit comments