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(`<span>${I18n.t(this._noticeKey(), options)}</span>`); + buffer.push( + `<span title="${moment(this.get("executeAt")).format("LLLL")}">${I18n.t( + this._noticeKey(), + options + )}</span>` + ); buffer.push("</h3>"); // TODO Sam: concerned this can cause a heavy rerender loop