mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
Deprecation: Change {{#each x in y}} to {{#each y as |x|}}
This commit is contained in:
@@ -34,7 +34,7 @@
|
||||
{{i18n 'admin.badges.preview.sample'}}
|
||||
</p>
|
||||
<ul>
|
||||
{{#each html in processed_sample}}
|
||||
{{#each processed_sample as |html|}}
|
||||
<li>{{{html}}}</li>
|
||||
{{/each}}
|
||||
</ul>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<div class="modal-body">
|
||||
<div>
|
||||
<ul class='badge-groupings'>
|
||||
{{#each wc in workingCopy}}
|
||||
{{#each workingCopy as |wc|}}
|
||||
<li>
|
||||
{{#if wc.editing}}
|
||||
{{input value=wc.name}}
|
||||
|
||||
Reference in New Issue
Block a user