This is an automated email from the ASF dual-hosted git repository. liudongkai pushed a commit to branch 3.0.0-beta-2-prepare in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git
commit cbefb59bf8f78f28606468eab07a3c9692c7c59e Author: songjianet <[email protected]> AuthorDate: Wed Jun 1 21:50:43 2022 +0800 [Fix][UI] Fixed the issue that the status statistics on the project overview page were inconsistent. (#10328) (cherry picked from commit e8ad62bcd03ecbf947d7044ba261aa19b81cec92) --- .../src/views/projects/overview/components/state-card.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dolphinscheduler-ui/src/views/projects/overview/components/state-card.tsx b/dolphinscheduler-ui/src/views/projects/overview/components/state-card.tsx index d2a014561c..654270e359 100644 --- a/dolphinscheduler-ui/src/views/projects/overview/components/state-card.tsx +++ b/dolphinscheduler-ui/src/views/projects/overview/components/state-card.tsx @@ -65,7 +65,7 @@ const StateCard = defineComponent({ } = this const { columnsRef } = useTable() return ( - <Card title={title}> + <Card title={title} style={{ minHeight: '820px' }}> {{ default: () => ( <NGrid x-gap={12} cols={2}>
