You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 26, 2019. It is now read-only.
Hi,
I'm trying to load partial dynamically
{{#each metaData.sections}}
{{#if this.type}}
{{> this.type}}
{{/if}}
{{/each}}
but I get a ERR_CONTENT_DECODING_FAILED error on chrome, does anybody have any idea of what the issue could be?
I've tried various solutions but nothing seems to be working
{{> (this.type)}}
{{> ({{this.type}})}}
{{> "this.type"}}
{{> (lookup . 'this.type'}}
Nothing seems to do the trick.
Any suggestions?