Skip to content

Commit

Permalink
Merge branch 'master' into feature/OAM-64
Browse files Browse the repository at this point in the history
  • Loading branch information
olewandowski1 committed May 22, 2024
2 parents fb0b3b3 + f1db79e commit 72fa91d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@
{
header: 'adminSystemNotificationList.isDisplayed',
propertyPath: 'isDisplayed',
sortable: false,
template: function(item) {
return '<openlmis-ok-icon show="' + item.isDisplayed + '"></openlmis-ok-icon>';
}
Expand Down
3 changes: 2 additions & 1 deletion src/admin-user-list/user-list.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,8 @@
},
{
header: 'adminUserList.email',
propertyPath: 'email'
propertyPath: 'email',
sortable: false
}
],
actions: {
Expand Down
1 change: 1 addition & 0 deletions src/order-fulfillment/order-fulfillment.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@
{
header: 'orderFulfillment.orderingFacility',
propertyPath: 'facility',
sortable: false,
template: function(item) {
return $filter('facility')(item.facility);
}
Expand Down

0 comments on commit 72fa91d

Please sign in to comment.