FIX: tweaking topic footer dropdowns (#6882)

- no description on mobile for notifications
- better reason text positioning
This commit is contained in:
Joffrey JAFFEUX
2019-01-16 10:27:27 +01:00
committed by GitHub
parent 60790eb006
commit 486df57a23
5 changed files with 10 additions and 40 deletions

View File

@ -22,6 +22,10 @@ export default DropdownSelectBoxRoxComponent.extend({
@computed("_start")
description(_start) {
if (this.site && this.site.mobileView) {
return null;
}
return Handlebars.escapeExpression(I18n.t(`${_start}.description`));
},