mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-02-17 12:11:16 -05:00
fix blank created_at .. date is unbound, we should rename it to unboundDate
This commit is contained in:
parent
9a57aaaaa9
commit
e52e46a609
1 changed files with 3 additions and 1 deletions
|
@ -25,7 +25,9 @@
|
||||||
{{#if hasWebsite}}
|
{{#if hasWebsite}}
|
||||||
<dt>{{i18n user.website}}:</dt><dd><a {{bindAttr href="website"}} target="_blank">{{websiteName}}</a></dd>
|
<dt>{{i18n user.website}}:</dt><dd><a {{bindAttr href="website"}} target="_blank">{{websiteName}}</a></dd>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
<dt>{{i18n user.created}}:</dt><dd>{{date created_at}}</dd>
|
{{#if created_at}}
|
||||||
|
<dt>{{i18n user.created}}:</dt><dd>{{date created_at}}</dd>
|
||||||
|
{{/if}}
|
||||||
{{#if last_posted_at}}
|
{{#if last_posted_at}}
|
||||||
<dt>{{i18n user.last_posted}}:</dt><dd>{{date last_posted_at}}</dd>
|
<dt>{{i18n user.last_posted}}:</dt><dd>{{date last_posted_at}}</dd>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
Loading…
Reference in a new issue