Skip to content

Commit

Permalink
fix(dedicated): account contacts freezing
Browse files Browse the repository at this point in the history
Signed-off-by: frenauvh <[email protected]>
  • Loading branch information
frenautvh committed Feb 8, 2021
1 parent 492f03a commit 3f7ef92
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,7 @@ export default class {
const availableServices = filter(services, (service) =>
AVAILABLE_SERVICES.includes(service.category),
);
return sortBy(availableServices, ['serviceName', 'category']).map(
(service) => new BillingService(service),
);
return sortBy(availableServices, ['serviceName', 'category']);
});
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
data-row-loader="$ctrl.getServiceInfos($row)"
data-criteria="$ctrl.criteria"
data-on-criteria-change="$ctrl.onCriteriaChange($criteria)"
data-page-size="10"
>
<oui-datagrid-column
data-title=":: 'account_contacts_service_name' | translate"
Expand Down

0 comments on commit 3f7ef92

Please sign in to comment.