From eec10541b3947cb2a09fc335bc3130b2daad3f4f Mon Sep 17 00:00:00 2001 From: Anthony Lapenna Date: Thu, 21 Dec 2017 19:56:54 +0100 Subject: [PATCH] fix(users): fix invalid Authentication value (#1528) --- app/components/users/users.html | 1 + .../ui/datatables/users-datatable/usersDatatable.html | 4 ++-- .../ui/datatables/users-datatable/usersDatatable.js | 3 ++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/app/components/users/users.html b/app/components/users/users.html index 9f6535c4d..ad69ff9b7 100644 --- a/app/components/users/users.html +++ b/app/components/users/users.html @@ -118,6 +118,7 @@ title="Users" title-icon="fa-user" dataset="users" table-key="users" order-by="Username" show-text-filter="true" + authentication-method="AuthenticationMethod" remove-action="removeAction" > diff --git a/app/directives/ui/datatables/users-datatable/usersDatatable.html b/app/directives/ui/datatables/users-datatable/usersDatatable.html index 833c1d3e9..9e5d5c40f 100644 --- a/app/directives/ui/datatables/users-datatable/usersDatatable.html +++ b/app/directives/ui/datatables/users-datatable/usersDatatable.html @@ -70,8 +70,8 @@ - Internal - LDAP + Internal + LDAP diff --git a/app/directives/ui/datatables/users-datatable/usersDatatable.js b/app/directives/ui/datatables/users-datatable/usersDatatable.js index f59ca6ae9..565cf3da5 100644 --- a/app/directives/ui/datatables/users-datatable/usersDatatable.js +++ b/app/directives/ui/datatables/users-datatable/usersDatatable.js @@ -9,6 +9,7 @@ angular.module('ui').component('usersDatatable', { orderBy: '@', reverseOrder: '<', showTextFilter: '<', - removeAction: '<' + removeAction: '<', + authenticationMethod: '<' } });