Skip to content

Commit

Permalink
Merge pull request #3197 from SEED-platform/3188-bug/derived-cols-let…
Browse files Browse the repository at this point in the history
…ter-spacing

3188 bug/derived cols letter spacing
  • Loading branch information
Ryo committed Apr 4, 2022
2 parents 64d9f44 + 5eb930d commit d852541
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ angular.module('BE.seed.controller.inventory_list_beta', [])
const foundCol = _.find(derived_columns_payload.derived_columns, {id: col.id});
if (foundCol) {
foundCol.is_derived_column = true;
foundCol.displayName = foundCol.name;
$scope.columns.push(foundCol);
}
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ angular.module('BE.seed.controller.inventory_list', [])
const foundCol = _.find(derived_columns_payload.derived_columns, {id: col.id});
if (foundCol) {
foundCol.is_derived_column = true;
foundCol.displayName = foundCol.name;
$scope.columns.push(foundCol);
}
});
Expand Down

0 comments on commit d852541

Please sign in to comment.