Skip to content

Commit

Permalink
implementation(fix): #29564 blinking effect during category loading (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
hmoreras authored Aug 14, 2024
1 parent d9fcd27 commit 3bca1a2
Showing 1 changed file with 8 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,14 @@
</div>
<div class="flex-grow-1 category-field__categories">
@if (store.mode() === 'list') {
@if (store.isListLoaded()) {
<dot-category-field-category-list
@fadeAnimation
(itemChecked)="store.updateSelected($event.selected, $event.item)"
(rowClicked)="store.getCategories($event)"
[categories]="store.categoryList()"
[isLoading]="store.isListLoading()"
[selected]="store.selectedCategoriesValues()"
[breadcrumbs]="store.breadcrumbMenu()" />
}
<dot-category-field-category-list
@fadeAnimation
(itemChecked)="store.updateSelected($event.selected, $event.item)"
(rowClicked)="store.getCategories($event)"
[categories]="store.categoryList()"
[isLoading]="store.isListLoading()"
[selected]="store.selectedCategoriesValues()"
[breadcrumbs]="store.breadcrumbMenu()" />
} @else {
<dot-category-field-search-list
@fadeAnimation
Expand Down

0 comments on commit 3bca1a2

Please sign in to comment.