mirror of https://github.com/zulip/zulip.git
settings: Remove id column from tables in stream and group settings.
Fixes part of #25483.
This commit is contained in:
parent
1fc59288b9
commit
437b2747b1
|
@ -8,7 +8,6 @@
|
|||
{{else}}
|
||||
<td class="hidden-subscriber-email">{{t "(hidden)"}}</td>
|
||||
{{/if}}
|
||||
<td>{{user_id}} </td>
|
||||
<td>
|
||||
<button {{#if disabled}} disabled="disabled"{{/if}} data-user-id="{{user_id}}" class="remove_potential_subscriber button small rounded white">{{t 'Remove' }}</button>
|
||||
</td>
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
<thead class="table-sticky-headers">
|
||||
<th data-sort="alphabetic" data-sort-prop="full_name">{{t "Name" }}</th>
|
||||
<th data-sort="email">{{t "Email" }}</th>
|
||||
<th data-sort="id">{{t "User ID" }}</th>
|
||||
<th>{{t "Action" }}</th>
|
||||
</thead>
|
||||
<tbody id="create_stream_subscribers" class="subscriber_table"></tbody>
|
||||
|
|
|
@ -18,7 +18,6 @@
|
|||
<thead class="table-sticky-headers">
|
||||
<th data-sort="alphabetic" data-sort-prop="full_name">{{t "Name" }}</th>
|
||||
<th data-sort="email">{{t "Email" }}</th>
|
||||
<th data-sort="id">{{t "User ID" }}</th>
|
||||
<th>{{t "Action" }}</th>
|
||||
</thead>
|
||||
<tbody id="create_user_group_members" class="member_table"></tbody>
|
||||
|
|
|
@ -22,7 +22,6 @@
|
|||
<thead class="table-sticky-headers">
|
||||
<th data-sort="alphabetic" data-sort-prop="full_name">{{t "Name" }}</th>
|
||||
<th data-sort="email">{{t "Email" }}</th>
|
||||
<th data-sort="id">{{t "User ID" }}</th>
|
||||
<th class="actions" {{#unless can_edit}}style="display:none"{{/unless}}>{{t "Actions" }}</th>
|
||||
</thead>
|
||||
<tbody class="member_table"></tbody>
|
||||
|
|
Loading…
Reference in New Issue