mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-03-24 13:49:54 -04:00
Fix [object Object] in staff logs details modal
This commit is contained in:
parent
f36fc8c41f
commit
6a3c849067
1 changed files with 10 additions and 2 deletions
|
@ -1,9 +1,17 @@
|
|||
<section class="field">
|
||||
<b>{{i18n admin.customize.css}}</b>: ({{i18n character_count count=stylesheet.length}})<br/>
|
||||
<b>{{i18n admin.customize.css}}</b>:
|
||||
{{#if stylesheet}}
|
||||
({{i18n character_count count=stylesheet.length}})
|
||||
{{/if}}
|
||||
<br/>
|
||||
{{textarea value=stylesheet class="plain"}}
|
||||
</section>
|
||||
<section class="field">
|
||||
<b>{{i18n admin.customize.header}}</b>: ({{i18n character_count count=header.length}})<br/>
|
||||
<b>{{i18n admin.customize.header}}</b>:
|
||||
{{#if header}}
|
||||
({{i18n character_count count=header.length}})
|
||||
{{/if}}
|
||||
<br/>
|
||||
{{textarea value=header class="plain"}}
|
||||
</section>
|
||||
<section class="field">
|
||||
|
|
Loading…
Add table
Reference in a new issue