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 has been archived by the owner on Aug 24, 2022. It is now read-only.
Take the following example from the ec-addon-docs Quickstart guide:
{{#docs-viewer as |viewer|}}
{{#viewer.nav as |nav|}}
{{nav.item "Introduction" "docs.index"}}
{{/viewer.nav}}
{{#viewer.main}}
{{outlet}}
{{/viewer.main}}
{{/docs-viewer}}
The linter will spit out the following error:
error You are using the component {{viewer.main}} with curly component syntax. You should use <Viewer.Main> instead. If it is actually a helper you must manually add it to the 'no-curly-component-invocation' rule configuration, e.g. 'no-curly-component-invocation': { allow: ['viewer.main'] }. no-curly-component-invocation
However, Viewer.Main will not work, even if you update to as |Viewer|. The correct syntax is instead <viewer.main>.
The text was updated successfully, but these errors were encountered:
Take the following example from the ec-addon-docs Quickstart guide:
The linter will spit out the following error:
However,
Viewer.Main
will not work, even if you update toas |Viewer|
. The correct syntax is instead<viewer.main>
.The text was updated successfully, but these errors were encountered: