mirror of https://github.com/zulip/zulip.git
settings_users: Do not allow sorting by email if emails are hidden.
This commit is contained in:
parent
05af6fd8b4
commit
cb15e0265d
|
@ -160,6 +160,7 @@ export function build_page() {
|
|||
create_web_public_stream_policy_values:
|
||||
settings_config.create_web_public_stream_policy_values,
|
||||
disable_enable_spectator_access_setting: !page_params.server_web_public_streams_enabled,
|
||||
can_sort_by_email: settings_data.show_email(),
|
||||
};
|
||||
|
||||
if (options.realm_logo_source !== "D" && options.realm_night_logo_source === "D") {
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
<table class="table table-condensed table-striped wrapped-table">
|
||||
<thead class="table-sticky-headers">
|
||||
<th class="active" data-sort="alphabetic" data-sort-prop="full_name">{{t "Name" }}</th>
|
||||
<th data-sort="email">{{t "Email" }}</th>
|
||||
<th {{#if can_sort_by_email}}data-sort="email"{{/if}}>{{t "Email" }}</th>
|
||||
<th class="user_id" data-sort="id">{{t "User ID" }}</th>
|
||||
<th class="user_role" data-sort="role">{{t "Role" }}</th>
|
||||
{{#if is_admin}}
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
<table class="table table-condensed table-striped wrapped-table">
|
||||
<thead class="table-sticky-headers">
|
||||
<th class="active" data-sort="alphabetic" data-sort-prop="full_name">{{t "Name" }}</th>
|
||||
<th data-sort="email">{{t "Email" }}</th>
|
||||
<th {{#if can_sort_by_email}}data-sort="email"{{/if}}>{{t "Email" }}</th>
|
||||
<th class="user_id" data-sort="id">{{t "User ID" }}</th>
|
||||
<th class="user_role" data-sort="role">{{t "Role" }}</th>
|
||||
<th class="last_active" data-sort="last_active">{{t "Last active" }}</th>
|
||||
|
|
Loading…
Reference in New Issue