Merge branch '292_fix_cancel_js' into 'master'
fix(kfet): fix js error when cancelling already canceled operation Closes #292 See merge request klub-dev-ens/gestioCOF!516
This commit is contained in:
commit
5160da7862
1 changed files with 1 additions and 1 deletions
|
@ -248,7 +248,7 @@ function KHistory(options = {}) {
|
||||||
that.cancel_entry(entry);
|
that.cancel_entry(entry);
|
||||||
}
|
}
|
||||||
if (type == "operation") {
|
if (type == "operation") {
|
||||||
for (let opegroup of data["opegroups_to_update"]) {
|
for (let opegroup of (data["opegroups_to_update"] || [])) {
|
||||||
that.update_opegroup(opegroup)
|
that.update_opegroup(opegroup)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue