Skip to content

Commit

Permalink
Fix for detail page
Browse files Browse the repository at this point in the history
  • Loading branch information
haneslinger committed Nov 4, 2024
1 parent 034667e commit 2416742
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ angular.module('SEED.controller.inventory_detail', []).controller('inventory_det
resolve: {
columns: () => columns,
currentProfile: () => $scope.currentProfile,
cycle: () => null,
cycle: () => $scope.cycle,
inventory_type: () => $stateParams.inventory_type,
provided_inventory() {
const provided_inventory = [];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ <h4 class="modal-title" ng-switch-when="running" translate>Processing records...
</div>
<div class="modal-body row" ng-switch="state">
<div class="col-sm-12">
<div ng-switch-default translate>This will reset your visible columns and column order to only non-derived columns that contain data. Are you sure you want to continue?</div>
<div ng-switch-default translate>This will reset your visible columns and column order to only columns that contain data. Are you sure you want to continue?</div>
<div class="progress_bar_container" ng-switch-when="running">
<div class="progress_bar_copy_top">{$ status $}</div>
<uib-progressbar class="progress-striped active" value="progress" type="success"></uib-progressbar>
Expand Down

0 comments on commit 2416742

Please sign in to comment.