File tree Expand file tree Collapse file tree
frontend/public/components Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -700,7 +700,7 @@ const ProjectLink = ({ project }) => {
700700
701701export const ProjectsTable = ( props ) => {
702702 const { t } = useTranslation ( ) ;
703- const columns = useProjectsColumns ( { showMetrics : false , showActions : false } ) ;
703+ const columns = useProjectsColumns ( { showMetrics : false , showActions : true } ) ;
704704
705705 return (
706706 < React . Suspense fallback = { < LoadingBox /> } >
@@ -729,7 +729,7 @@ export const ProjectList = (props) => {
729729 ) ;
730730 const isPrometheusAvailable = usePrometheusGate ( ) ;
731731 const showMetrics = isPrometheusAvailable && canGetNS ;
732- const showActions = showMetrics ;
732+ const showActions = true ;
733733 const columns = useProjectsColumns ( { showMetrics, showActions } ) ;
734734 const namespaceMetrics = useSelector ( ( { UI } ) => UI . getIn ( [ 'metrics' , 'namespace' ] ) ) ;
735735
You can’t perform that action at this time.
0 commit comments