mirror of
https://github.com/zulip/zulip.git
synced 2025-11-19 14:08:23 +00:00
This button was red, which is appropriate when modifying an existing stream, since that's a potentially disruptive action, but not appropriate in the context of previewing subscribers for a new stream being created. Fixes: #21863.
15 lines
518 B
Handlebars
15 lines
518 B
Handlebars
<tr>
|
|
<td>
|
|
{{full_name}}{{#if is_current_user}} <span class="my_user_status">{{t "(you)"}}</span>{{/if}}
|
|
</td>
|
|
{{#if show_email}}
|
|
<td class="subscriber-email">{{email}}</td>
|
|
{{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>
|
|
</tr>
|