UX: Hide/show preview button title attribute fix (#28155)
This commit is contained in:
parent
a32390f5dc
commit
fa3f50efd0
|
@ -332,7 +332,7 @@
|
|||
class="btn btn-default no-text mobile-preview"
|
||||
title={{i18n "composer.show_preview"}}
|
||||
{{on "click" this.composer.togglePreview}}
|
||||
aria-label={{i18n "preview"}}
|
||||
aria-label={{i18n "composer.show_preview"}}
|
||||
>
|
||||
{{d-icon "desktop"}}
|
||||
</a>
|
||||
|
@ -340,6 +340,7 @@
|
|||
{{#if this.composer.showPreview}}
|
||||
<DButton
|
||||
@action={{this.composer.togglePreview}}
|
||||
@title="composer.hide_preview"
|
||||
@ariaLabel="composer.hide_preview"
|
||||
@icon="pencil-alt"
|
||||
class="hide-preview"
|
||||
|
|
Loading…
Reference in New Issue