This commit is contained in:
David Taylor 2024-11-29 15:04:34 +00:00
parent 57bbf2fbb5
commit 283008721b
No known key found for this signature in database
GPG Key ID: 46904C18B1D3F434
1 changed files with 11 additions and 9 deletions

View File

@ -14,15 +14,17 @@ const SHOW_FILTER_AT = 10;
export default class DocsIndexController extends Controller { export default class DocsIndexController extends Controller {
@controller application; @controller application;
queryParams = { queryParams = [
ascending: "ascending", {
filterCategories: "category", ascending: "ascending",
filterTags: "tags", filterCategories: "category",
filterSolved: "solved", filterTags: "tags",
orderColumn: "order", filterSolved: "solved",
searchTerm: "search", orderColumn: "order",
selectedTopic: "topic", searchTerm: "search",
}; selectedTopic: "topic",
},
];
isLoading = false; isLoading = false;
isLoadingMore = false; isLoadingMore = false;