diff options
| author | Jake Mannens <jake@asger.xyz> | 2026-05-06 22:33:52 +1000 |
|---|---|---|
| committer | Jake Mannens <jake@asger.xyz> | 2026-05-06 22:33:52 +1000 |
| commit | 2b66d00175950d845a794422433d4a350cf87775 (patch) | |
| tree | 8b0a77d43d80faab235c14008206a926d4566859 /Pages | |
| parent | 60dd44153b5f2b233dc66032507ee6c9a925ed0e (diff) | |
v0.13av0.13a
Diffstat (limited to 'Pages')
| -rw-r--r-- | Pages/Component/TagEditDialog.razor | 2 | ||||
| -rw-r--r-- | Pages/Gallery.razor | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Pages/Component/TagEditDialog.razor b/Pages/Component/TagEditDialog.razor index 2e443d4..afa312e 100644 --- a/Pages/Component/TagEditDialog.razor +++ b/Pages/Component/TagEditDialog.razor @@ -84,7 +84,7 @@ } else { tagService.UpdateTagDefinition(TagDefinition, tagName, tagNamespace, tagAlias); } - } catch(TagDuplicateException e) { + } catch(ApiModels.TagDuplicateException e) { nameExists = e.NameExists; aliasExists = e.AliasExists; return; diff --git a/Pages/Gallery.razor b/Pages/Gallery.razor index 1464c13..743485e 100644 --- a/Pages/Gallery.razor +++ b/Pages/Gallery.razor @@ -98,8 +98,8 @@ if(initial) displayMedia = new(); - SortOrder? sortOrder = null; - if(Enum.TryParse<SortOrder>(SortOrder, true, out var so)) + ApiModels.SortOrder? sortOrder = null; + if(Enum.TryParse<ApiModels.SortOrder>(SortOrder, true, out var so)) sortOrder = so; if(TagId is not null && Query is null) { |
