diff --git a/src/pages/devops/containers/Pipelines/index.jsx b/src/pages/devops/containers/Pipelines/index.jsx index 29402a7e4e9..fc85f29df30 100644 --- a/src/pages/devops/containers/Pipelines/index.jsx +++ b/src/pages/devops/containers/Pipelines/index.jsx @@ -31,8 +31,6 @@ import Health from 'projects/components/Health' import EmptyTable from 'components/Cards/EmptyTable' import DeleteModal from 'components/Modals/Delete' import CreateModal from 'components/Modals/Create' -import Status from 'devops/components/Status' -import { getPipelineStatus } from 'utils/status' import ParamsModal from 'components/Forms/CICDs/paramsModal' import Banner from 'components/Cards/Banner' import PipelineStore from 'stores/devops/pipelines' @@ -407,33 +405,17 @@ class CICDs extends React.Component { ) }, }, - { - title: t('Status'), - width: '15%', - render: record => { - if (record.numberOfSuccessfulBranches !== undefined) { - return ( - - - {record.numberOfSuccessfulBranches} - - {t('branch success')} - - ) - } - return - }, - }, + { title: t('WeatherScore'), dataIndex: 'weatherScore', - width: '20%', + width: '30%', render: weatherScore => , }, { title: t('Branch'), dataIndex: 'totalNumberOfBranches', - width: '20%', + width: '25%', render: totalNumberOfBranches => totalNumberOfBranches === undefined ? '-' : totalNumberOfBranches, },