Skip to content

Commit

Permalink
AO-899: fixed offline messages counter
Browse files Browse the repository at this point in the history
  • Loading branch information
DominikNoga committed Nov 6, 2024
1 parent af47bf4 commit 2d04eac
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/stock-adjustment-creation/adjustment-creation.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -849,7 +849,9 @@
}

return $q.all(submitAdjustmentPromises).then(function() {
goToStockCardSummaries();
return $q.resolve(function() {
goToStockCardSummaries();
}());
});
}

Expand All @@ -875,7 +877,9 @@
goToStockCardSummaries();
});
} else {
goToStockCardSummaries();
return $q.resolve(function() {
goToStockCardSummaries();
}());
}
// ANGOLASUP-717: ends here
}, function(errorResponse) {
Expand Down Expand Up @@ -1301,4 +1305,4 @@

onInit();
}
})();
})();

0 comments on commit 2d04eac

Please sign in to comment.