fix(ui): remove old pattern for component templates (#26431)

This commit is contained in:
Alexey Kulakov
2025-08-08 10:03:42 -07:00
committed by GitHub
parent f11461178d
commit 0cac9813fa
122 changed files with 4 additions and 4 deletions

View File

@@ -19,6 +19,6 @@ module.exports = {
},
ignore: [
'app/components/breadcrumbs/*', // using {{(modifier)}} syntax
'app/templates/components/list-pagination/list-pager', // using {{(modifier)}} syntax
'app/components/list-pagination/list-pager', // using {{(modifier)}} syntax
],
};

View File

@@ -11,11 +11,11 @@
aria-label={{this.label}}
{{(modifier
this.includeKeyboardNav
label=(if (eq this.label 'Next page') 'Next Page' 'Previous Page')
label=(if (eq this.label "Next page") "Next Page" "Previous Page")
action=(action "gotoRoute")
pattern=(if (eq this.label 'Next page') (array "]" "]") (array "[" "["))
pattern=(if (eq this.label "Next page") (array "]" "]") (array "[" "["))
)}}
>
{{yield}}
</LinkTo>
{{/if}}
{{/if}}

Some files were not shown because too many files have changed in this diff Show More