Files
zulip/web/templates/user_full_name.hbs
Sahil Batra a88acc4642 users: Add ellipsis only on names and show the indicator always.
We now show the guest indicator even for long names and only
truncate the names in right sidebar and the message feed.
2023-10-12 12:06:10 -07:00

6 lines
190 B
Handlebars

{{#if should_add_guest_user_indicator}}
<span class="user-name">{{name}}</span>&nbsp;<i class="guest-indicator">({{t 'guest' }})</i>
{{else}}
<span class="user-name">{{name}}</span>
{{/if}}