FIX: adds a title to composer actions header

This commit is contained in:
Joffrey JAFFEUX
2018-06-18 19:01:37 +02:00
committed by GitHub
parent 6e54af1091
commit 3fc82bf200
2 changed files with 6 additions and 0 deletions
@@ -61,12 +61,15 @@ export default DropdownSelectBoxComponent.extend({
case CREATE_TOPIC:
case REPLY:
content.icon = "mail-forward";
content.title = I18n.t("composer.composer_actions.reply");
break;
case EDIT:
content.icon = "pencil";
content.title = I18n.t("composer.composer_actions.edit");
break;
case CREATE_SHARED_DRAFT:
content.icon = "clipboard";
content.title = I18n.t("composer.composer_actions.draft");
break;
}