mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 13:03:29 +00:00
If a channel has a thousand subscribers this commit results in the count being displayed with a thousands separator, e.g. with English locale you get 1,000 instead of 1000.
7 lines
241 B
Handlebars
7 lines
241 B
Handlebars
<i class="fa fa-user-o" aria-hidden="true"></i>
|
|
{{#if can_access_subscribers}}
|
|
<span class="subscriber-count-text">{{numberFormat subscriber_count}}</span>
|
|
{{else}}
|
|
<i class="subscriber-count-lock fa fa-lock" aria-hidden="true"></i>
|
|
{{/if}}
|