From 1e0cdab3e7fb2c2ea8eb492c6f9c88ebcfb3f281 Mon Sep 17 00:00:00 2001 From: Ahmed Awan Date: Wed, 13 Nov 2024 11:43:57 -0500 Subject: [PATCH] fix word wrapping in invocation panel list items Fixes https://github.com/galaxyproject/galaxy/issues/18920 --- .../Invocation/InvocationScrollList.vue | 23 ++++++++++++++----- 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/client/src/components/Workflow/Invocation/InvocationScrollList.vue b/client/src/components/Workflow/Invocation/InvocationScrollList.vue index f42dd3b858ed..9e22d80b65a5 100644 --- a/client/src/components/Workflow/Invocation/InvocationScrollList.vue +++ b/client/src/components/Workflow/Invocation/InvocationScrollList.vue @@ -204,10 +204,14 @@ function workflowName(workflowId: string) { @click="() => cardClicked(invocation)">
- {{ workflowName(invocation.workflow_id) }} + + {{ workflowName(invocation.workflow_id) }} + - {{ historyName(invocation.history_id) }} + + {{ historyName(invocation.history_id) }} +
@@ -257,12 +261,19 @@ function workflowName(workflowId: string) {