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 {
@controller application;
queryParams = {
ascending: "ascending",
filterCategories: "category",
filterTags: "tags",
filterSolved: "solved",
orderColumn: "order",
searchTerm: "search",
selectedTopic: "topic",
};
queryParams = [
{
ascending: "ascending",
filterCategories: "category",
filterTags: "tags",
filterSolved: "solved",
orderColumn: "order",
searchTerm: "search",
selectedTopic: "topic",
},
];
isLoading = false;
isLoadingMore = false;