From 7b0e145b7457caaf677630c3b61bfe10298ee7f3 Mon Sep 17 00:00:00 2001 From: Krish Agarwal Date: Fri, 5 Dec 2025 14:34:25 +0530 Subject: [PATCH 1/2] Fixed: Lack of kebab list on projects list page for normal user --- frontend/public/components/namespace.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/public/components/namespace.jsx b/frontend/public/components/namespace.jsx index 925f77cc088..6bca7b7ed66 100644 --- a/frontend/public/components/namespace.jsx +++ b/frontend/public/components/namespace.jsx @@ -700,7 +700,7 @@ const ProjectLink = ({ project }) => { export const ProjectsTable = (props) => { const { t } = useTranslation(); - const columns = useProjectsColumns({ showMetrics: false, showActions: false }); + const columns = useProjectsColumns({ showMetrics: false, showActions: true }); return ( }> @@ -729,7 +729,7 @@ export const ProjectList = (props) => { ); const isPrometheusAvailable = usePrometheusGate(); const showMetrics = isPrometheusAvailable && canGetNS; - const showActions = showMetrics; + const showActions = true; const columns = useProjectsColumns({ showMetrics, showActions }); const namespaceMetrics = useSelector(({ UI }) => UI.getIn(['metrics', 'namespace'])); From 3dd69ffd04266f1ed68ae5f791043d8f31f03040 Mon Sep 17 00:00:00 2001 From: Krish Agarwal Date: Fri, 5 Dec 2025 16:49:44 +0530 Subject: [PATCH 2/2] removed actions from dev perspective Co-authored-by: Vikram Raj --- frontend/public/components/namespace.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/public/components/namespace.jsx b/frontend/public/components/namespace.jsx index 6bca7b7ed66..f3447f104ad 100644 --- a/frontend/public/components/namespace.jsx +++ b/frontend/public/components/namespace.jsx @@ -700,7 +700,7 @@ const ProjectLink = ({ project }) => { export const ProjectsTable = (props) => { const { t } = useTranslation(); - const columns = useProjectsColumns({ showMetrics: false, showActions: true }); + const columns = useProjectsColumns({ showMetrics: false, showActions: false }); return ( }>