We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f36fc8c commit 6a3c849Copy full SHA for 6a3c849
1 file changed
app/assets/javascripts/admin/templates/logs/_site_customization_change_details.js.handlebars
@@ -1,9 +1,17 @@
1
<section class="field">
2
- <b>{{i18n admin.customize.css}}</b>: ({{i18n character_count count=stylesheet.length}})<br/>
+ <b>{{i18n admin.customize.css}}</b>:
3
+ {{#if stylesheet}}
4
+ ({{i18n character_count count=stylesheet.length}})
5
+ {{/if}}
6
+ <br/>
7
{{textarea value=stylesheet class="plain"}}
8
</section>
9
- <b>{{i18n admin.customize.header}}</b>: ({{i18n character_count count=header.length}})<br/>
10
+ <b>{{i18n admin.customize.header}}</b>:
11
+ {{#if header}}
12
+ ({{i18n character_count count=header.length}})
13
14
15
{{textarea value=header class="plain"}}
16
17
0 commit comments