mirror of
https://github.com/zulip/zulip.git
synced 2025-10-22 20:42:14 +00:00
The organization logo in the upper left navigates to the user's home view. We add a tooltip to make this easier to discover. We show `Esc` as the keyboard shortcut here, unless the user has disabled it, in which case we show the alt shortcut `Ctrl` + `[`. Fixes #29185.
9 lines
198 B
Handlebars
9 lines
198 B
Handlebars
<div>
|
|
<div>{{t "Go to home view"}} ({{home_view}})</div>
|
|
</div>
|
|
{{#if escape_navigates_to_home_view}}
|
|
{{tooltip_hotkey_hints "Esc"}}
|
|
{{else}}
|
|
{{tooltip_hotkey_hints "Ctrl" "["}}
|
|
{{/if}}
|