Skip to content

Commit

Permalink
Minor table column width adjustments on Manage Users pg. [ref #3614]
Browse files Browse the repository at this point in the history
  • Loading branch information
mheppler committed Jun 29, 2017
1 parent 6e59762 commit 08f2c11
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/webapp/dashboard-users.xhtml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
<p:column headerText="#{bundle['dashboard.list_users.tbl_header.name']}">
<h:outputText value="#{user.firstName} #{user.lastName}" />
</p:column>
<p:column width="18%" headerText="#{bundle['dashboard.list_users.tbl_header.email']}">
<p:column width="20%" headerText="#{bundle['dashboard.list_users.tbl_header.email']}">
<h:outputText value="#{user.email}" />
</p:column>
<p:column headerText="#{bundle['dashboard.list_users.tbl_header.affiliation']}">
Expand All @@ -65,10 +65,10 @@
<p:column headerText="#{bundle['dashboard.list_users.tbl_header.roles']}">
<h:outputText value="#{user.roles}" />
</p:column>
<p:column width="13%" headerText="#{bundle['dashboard.list_users.tbl_header.authProviderFactoryAlias']}">
<p:column width="12%" headerText="#{bundle['dashboard.list_users.tbl_header.authProviderFactoryAlias']}">
<h:outputText value="#{DashboardUsersPage.getAuthProviderFriendlyName(user.authProviderId)}" />
</p:column>
<p:column width="10%" class="text-center" headerText="#{bundle['dashboard.list_users.tbl_header.isSuperuser']}">
<p:column width="9%" class="text-center" headerText="#{bundle['dashboard.list_users.tbl_header.isSuperuser']}">
<!-- A simple implementation of the superuser status toggle - via a boolean checkbox with an immediate ajax update. -->
<!-- Uses our standard approach, of showing a confirmation popup ("are you sure you want to toggle this? ...") first, -->
<!-- before saving the toggled value. -->
Expand Down

0 comments on commit 08f2c11

Please sign in to comment.