FIX: Icons not appearing (#132)

This commit is contained in:
Keegan George 2023-05-10 12:53:12 -07:00 committed by GitHub
parent e00946e200
commit 3f412f3666
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -44,7 +44,7 @@
"categories-alphabet active" "categories-alphabet active"
"categories-alphabet" "categories-alphabet"
}} }}
@icon="categorySortAlphaIcon" @icon={{this.categorySortAlphaIcon}}
@action={{toggleCategorySort}} @action={{toggleCategorySort}}
@actionParam="alpha" @actionParam="alpha"
/> />
@ -54,7 +54,7 @@
"categories-amount active" "categories-amount active"
"categories-amount" "categories-amount"
}} }}
@icon="categorySortNumericIcon" @icon={{this.categorySortNumericIcon}}
@action={{toggleCategorySort}} @action={{toggleCategorySort}}
@actionParam="numeric" @actionParam="numeric"
/> />
@ -94,7 +94,7 @@
"tags-alphabet active" "tags-alphabet active"
"tags-alphabet" "tags-alphabet"
}} }}
@icon="tagSortAlphaIcon" @icon={{this.tagSortAlphaIcon}}
@action={{toggleTagSort}} @action={{toggleTagSort}}
@actionParam="alpha" @actionParam="alpha"
/> />
@ -104,7 +104,7 @@
"tags-amount active" "tags-amount active"
"tags-amount" "tags-amount"
}} }}
@icon="tagSortNumericIcon" @icon={{this.tagSortNumericIcon}}
@action={{toggleTagSort}} @action={{toggleTagSort}}
@actionParam="numeric" @actionParam="numeric"
/> />