From ec87821bcdcb53550b44a0381349c296e8b814a8 Mon Sep 17 00:00:00 2001 From: Prospector <6166773+Prospector@users.noreply.github.com> Date: Mon, 23 May 2022 21:38:17 -0700 Subject: [PATCH] Workaround ModLoader capitalization issue and make loaders list collapsible (#490) --- components/ui/Checkbox.vue | 37 +++++++++++++++++++++++++++-- components/ui/search/Categories.vue | 5 +++- pages/search.vue | 27 +++++++++++++++++---- 3 files changed, 62 insertions(+), 7 deletions(-) diff --git a/components/ui/Checkbox.vue b/components/ui/Checkbox.vue index ad2c0350..652e610b 100644 --- a/components/ui/Checkbox.vue +++ b/components/ui/Checkbox.vue @@ -9,11 +9,12 @@ class="checkbox" role="checkbox" :disabled="disabled" - :class="{ checked: value }" + :class="{ checked: value, collapsing: collapsingToggleStyle }" :aria-label="description" :aria-checked="value" > -