Skip to content

Commit

Permalink
Ändere _selectedTags Typ zu List<int>
Browse files Browse the repository at this point in the history
Änderung des Typs der `_selectedTags`-Liste von `List<string>` zu `List<int>` in `Index.razor`, um Ganzzahlen statt Zeichenketten zu speichern.
  • Loading branch information
MarkenJaden committed Jun 25, 2024
1 parent cfc8b64 commit b8815c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Nekos/Pages/Index.razor
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@

private bool _showTagFilterMenu;

private List<string> _selectedTags = new();
private List<int> _selectedTags = new();

private PagedTagSchema _availableTags = new();

Expand Down

0 comments on commit b8815c2

Please sign in to comment.