From d6c69fdc2c72a0bbc58d26cfebe3d9776b9633ed Mon Sep 17 00:00:00 2001 From: Gaetan Craig-Riou <40413322+rioug@users.noreply.github.com> Date: Mon, 23 Mar 2026 10:48:27 +1100 Subject: [PATCH] Fix code typo Co-authored-by: Maikel --- .../order_cycles/controllers/incoming_controller.js.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/javascripts/admin/order_cycles/controllers/incoming_controller.js.coffee b/app/assets/javascripts/admin/order_cycles/controllers/incoming_controller.js.coffee index 94e1b30932..50300b249f 100644 --- a/app/assets/javascripts/admin/order_cycles/controllers/incoming_controller.js.coffee +++ b/app/assets/javascripts/admin/order_cycles/controllers/incoming_controller.js.coffee @@ -9,7 +9,7 @@ angular.module('admin.orderCycles').controller 'AdminOrderCycleIncomingCtrl', ($ # We want to make sure to load the filtered EnterpriseFee when any previous request is finished # otherwise the enterprise_fees migh get overriden by non filtered ones. $scope.$watch(( -> EnterpriseFee.loading), (isLoading) => - $scope.enterprise_fees ||= $scope.enterprise_fees = EnterpriseFee.index(order_cycle_id: $scope.order_cycle_id, per_item: true) unless isLoading + $scope.enterprise_fees ||= EnterpriseFee.index(order_cycle_id: $scope.order_cycle_id, per_item: true) unless isLoading ) $scope.exchangeTotalVariants = (exchange) ->