Skip to content

Commit

Permalink
fix a bug related to add pure and binary popups
Browse files Browse the repository at this point in the history
because of this bug the existing rows were not disabled
  • Loading branch information
RFSH committed Aug 27, 2021
1 parent 9c793ba commit 0f1215b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions common/table.js
Original file line number Diff line number Diff line change
Expand Up @@ -474,10 +474,11 @@
}

$log.debug("counter", current, ": read main successful.");


return vm.getDisabledTuples ? vm.getDisabledTuples(vm, page, requestCauses, reloadStartTime) : {page: page};
return vm.getFavorites ? vm.getFavorites(vm, page) : {page: page};
}).then(function (result) {
return vm.getFavorites ? vm.getFavorites(vm, result.page) : {page: result.page};
return vm.getDisabledTuples ? vm.getDisabledTuples(vm, result.page, requestCauses, reloadStartTime) : {page: result.page};
}).then(function (result) {
if (current !== vm.flowControlObject.counter) {
defer.resolve(false);
Expand Down

0 comments on commit 0f1215b

Please sign in to comment.