Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[Docs] IconExplorer : reset not current page when searching
  • Loading branch information
Christophe Peugnet committed Mar 17, 2025
commit 51c882087307d9a543eb587d47efa192168a6cda
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ .. EmojiExtensions.AllEmojis
,
];

await PaginationState.SetCurrentPageIndexAsync(0);

await PaginationState.SetTotalItemCountAsync(EmojisFound.Length);

_searchResultMessage = EmojisFound.Length == 0 ? "No emoji found." : string.Empty;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ .. IconsExtensions.AllIcons
,
];

await PaginationState.SetCurrentPageIndexAsync(0);

await PaginationState.SetTotalItemCountAsync(IconsFound.Length);

_searchResultMessage = IconsFound.Length == 0 ? "No icons found." : string.Empty;
Expand Down