From f7d3a8cb56e89581328cfa545e8565d671eafadf Mon Sep 17 00:00:00 2001 From: Benjamin Lu Date: Tue, 9 Dec 2025 02:43:25 -0800 Subject: [PATCH] nit --- src/components/queue/job/QueueJobItem.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/queue/job/QueueJobItem.vue b/src/components/queue/job/QueueJobItem.vue index ec92f5820..073838dd4 100644 --- a/src/components/queue/job/QueueJobItem.vue +++ b/src/components/queue/job/QueueJobItem.vue @@ -118,7 +118,7 @@ v-tooltip.top="action.tooltip" :type="action.buttonType" size="sm" - :class="getActionButtonClass()" + :class="actionButtonClass" :aria-label="action.ariaLabel" :data-testid="`job-action-${action.key}`" @click.stop="action.onClick?.($event)" @@ -144,7 +144,7 @@ v-tooltip.top="action.tooltip" :type="action.buttonType" size="sm" - :class="getActionButtonClass()" + :class="actionButtonClass" :aria-label="action.ariaLabel" :data-testid="`job-action-${action.key}`" @click.stop="action.onClick?.($event)" @@ -444,7 +444,7 @@ const handleMouseLeave = () => { onRowLeave() } -const getActionButtonClass = () => +const actionButtonClass = 'h-8 min-w-8 gap-1 rounded-lg text-text-primary transition duration-150 ease-in-out hover:opacity-95' const iconClass = computed(() => {