From 84fdf55902fe2d6d8fe7abd23e60ee80316489a1 Mon Sep 17 00:00:00 2001 From: Benjamin Lu Date: Thu, 26 Feb 2026 16:09:26 -0800 Subject: [PATCH] fix: set queue job filter tabs to 32px (#9217) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary - Increase queue job filter tab button height from `sm` to `md` (`32px` equivalent). - Apply consistently to both floating Queue Progress Overlay and docked Job History sidebar, since both use `JobFilterTabs`. ## Design - https://www.figma.com/board/R9eN9DHmDgX3qEJXsRKiRr/QA-Feedback--Alex-?node-id=273-111&t=OUCBdoZhwrOMsxXE-4 ## Testing - `pnpm typecheck` - `pnpm lint` (passes with existing repo warnings only) ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-9217-fix-set-queue-job-filter-tabs-to-32px-3126d73d36508106a9c8e3786ab77aa5) by [Unito](https://www.unito.io) --- src/components/queue/job/JobFilterTabs.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/queue/job/JobFilterTabs.vue b/src/components/queue/job/JobFilterTabs.vue index 3f7232170f..83a2a19025 100644 --- a/src/components/queue/job/JobFilterTabs.vue +++ b/src/components/queue/job/JobFilterTabs.vue @@ -5,7 +5,7 @@ v-for="tab in visibleJobTabs" :key="tab" :variant="selectedJobTab === tab ? 'secondary' : 'muted-textonly'" - size="sm" + size="md" @click="$emit('update:selectedJobTab', tab)" > {{ tabLabel(tab) }}