mirror of
https://github.com/zulip/zulip.git
synced 2026-06-21 21:32:29 +08:00
streams: Show "hidden" in subscriber-list when email is not accessible.
This commit is contained in:
parent
305131c7d7
commit
46660e5daa
@ -297,6 +297,10 @@
|
||||
top: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.hidden-subscriber-email {
|
||||
font-style: italic;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -2,6 +2,8 @@
|
||||
<td class="subscriber-name">{{name}}</td>
|
||||
{{#if show_email}}
|
||||
<td class="subscriber-email">{{email}}</td>
|
||||
{{else}}
|
||||
<td class="hidden-subscriber-email">{{t "(hidden)"}}</td>
|
||||
{{/if}}
|
||||
<td class="subscriber-user-id">{{user_id}}</td>
|
||||
{{#if displaying_for_admin}}
|
||||
|
||||
@ -31,9 +31,7 @@
|
||||
<table class="subscriber-list table table-striped">
|
||||
<thead class="table-sticky-headers">
|
||||
<th>{{t "Name" }}</th>
|
||||
{{#if show_email}}
|
||||
<th>{{t "Email" }}</th>
|
||||
{{/if}}
|
||||
<th>{{t "User ID" }}</th>
|
||||
{{#if is_realm_admin}}
|
||||
<th class="actions">{{t "Actions" }}</th>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user