mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
Revert "DEV: enforces ember-template-lint: no-triple-curlies (#9150)"
This reverts commit d436b600fb.
Triple curlies are still necessary for some raw templates.
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
</span>
|
||||
{{#if extraLabel}}
|
||||
<span class='extra-label'>
|
||||
{{html-safe extraLabel}}
|
||||
{{{extraLabel}}}
|
||||
</span>
|
||||
{{/if}}
|
||||
</div>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<span class='label-value'>{{field.label}}</span>
|
||||
|
||||
{{#if field.description}}
|
||||
<div class='field-description'>{{html-safe field.description}}</div>
|
||||
<div class='field-description'>{{{field.description}}}</div>
|
||||
{{/if}}
|
||||
</label>
|
||||
|
||||
@@ -11,5 +11,5 @@
|
||||
</div>
|
||||
|
||||
{{#if field.errorDescription}}
|
||||
<div class='field-error-description'>{{html-safe field.errorDescription}}</div>
|
||||
<div class='field-error-description'>{{{field.errorDescription}}}</div>
|
||||
{{/if}}
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
{{/if}}
|
||||
|
||||
{{#if step.description}}
|
||||
<p class='wizard-step-description'>{{html-safe step.description}}</p>
|
||||
<p class='wizard-step-description'>{{{step.description}}}</p>
|
||||
{{/if}}
|
||||
|
||||
{{#wizard-step-form step=step}}
|
||||
|
||||
Reference in New Issue
Block a user