From 7c8eea3647ac33f6e611f0e7705d2350a76774d0 Mon Sep 17 00:00:00 2001 From: maryliag Date: Fri, 9 Jun 2023 16:18:11 +0000 Subject: [PATCH] ui: fix columns selector being cut Previously, when the number of rows on the Jobs table was smaller than 3, the height of the area was not enough to show the columns selector, making it get cut and not displayed the "Apply" button unless you scrolled. This commit adds a min-height for that area, making sure the column selector will be displayed completely. Fixes #104619 Release note (bug fix): The column selector on the Jobs page is no longer getting cut. --- pkg/ui/workspaces/cluster-ui/src/jobs/jobs.module.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/ui/workspaces/cluster-ui/src/jobs/jobs.module.scss b/pkg/ui/workspaces/cluster-ui/src/jobs/jobs.module.scss index 44e86b7488ab..9e9179ce4822 100644 --- a/pkg/ui/workspaces/cluster-ui/src/jobs/jobs.module.scss +++ b/pkg/ui/workspaces/cluster-ui/src/jobs/jobs.module.scss @@ -253,4 +253,5 @@ .table-area { position: relative; overflow-x: scroll; + min-height: 450px; }