mirror of
https://github.com/discourse/discourse.git
synced 2025-03-09 14:34:35 +00:00
UX: displays exact date on title attribute of topic timer info (#7326)
This commit is contained in:
parent
9b288613ae
commit
0bd480c600
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user