From d4ce58ac1fcd50228ec83b985a86c2bf0c93266b Mon Sep 17 00:00:00 2001 From: Nicolas Vargas Date: Mon, 3 Jun 2024 13:22:00 -0300 Subject: [PATCH] fix: (QA) allow long outputs display by using dynamic accordion component height --- src/components/controls/Accordion.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/controls/Accordion.vue b/src/components/controls/Accordion.vue index 6e055ca4..86f6431a 100644 --- a/src/components/controls/Accordion.vue +++ b/src/components/controls/Accordion.vue @@ -75,6 +75,6 @@ export default { } .accordion-content.open { - max-height: 400px; + max-height: max-content; }