From 0bd480c60035aae211abbf75b549c5464c22655d Mon Sep 17 00:00:00 2001 From: Joffrey JAFFEUX Date: Fri, 5 Apr 2019 09:44:10 +0200 Subject: [PATCH] UX: displays exact date on title attribute of topic timer info (#7326) --- .../discourse/components/topic-timer-info.js.es6 | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/app/assets/javascripts/discourse/components/topic-timer-info.js.es6 b/app/assets/javascripts/discourse/components/topic-timer-info.js.es6 index 30a93295a0e..5ef9ad796e8 100644 --- a/app/assets/javascripts/discourse/components/topic-timer-info.js.es6 +++ b/app/assets/javascripts/discourse/components/topic-timer-info.js.es6 @@ -62,7 +62,12 @@ export default Ember.Component.extend( ); } - buffer.push(`${I18n.t(this._noticeKey(), options)}`); + buffer.push( + `${I18n.t( + this._noticeKey(), + options + )}` + ); buffer.push(""); // TODO Sam: concerned this can cause a heavy rerender loop