Updated Blazor UI tag/creator views. Altered logic for sorting favorite/blacklisted fields for tags/creators.
All checks were successful
ci / build-test (push) Successful in 2m45s
ci / publish-image (push) Successful in 1m58s

This commit is contained in:
2026-04-18 21:39:58 -04:00
parent 1f91e46527
commit c203b2cbdb
13 changed files with 308 additions and 120 deletions

View File

@@ -54,7 +54,7 @@ public class CreatorSearchProviderTests(CreatorSearchProviderFixture fixture) :
{
var options = new SearchOptions<CreatorSearchCriteria, CreatorSortField>()
{
SortOptions = [new(CreatorSortField.Favorite, SortDirection.Ascending)]
SortOptions = [new(CreatorSortField.Favorite, SortDirection.Descending)]
};
var result = await SearchAsync(options);
@@ -67,7 +67,7 @@ public class CreatorSearchProviderTests(CreatorSearchProviderFixture fixture) :
{
var options = new SearchOptions<CreatorSearchCriteria, CreatorSortField>()
{
SortOptions = [new(CreatorSortField.Blacklisted, SortDirection.Ascending)]
SortOptions = [new(CreatorSortField.Blacklisted, SortDirection.Descending)]
};
var result = await SearchAsync(options);