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 1e9f62453e0e4d1fdf3296beed0b64acca3b90dd Author: songjianet <[email protected]> AuthorDate: Fri May 27 16:27:15 2022 +0800 [Fix][UI] Fix status statistics card height is inconsistent. (#10268) (cherry picked from commit 1ac534be67826f3752bcde40a62428f95c88a334) --- dolphinscheduler-ui/src/views/home/components/state-card.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dolphinscheduler-ui/src/views/home/components/state-card.tsx b/dolphinscheduler-ui/src/views/home/components/state-card.tsx index d2a014561c..654270e359 100644 --- a/dolphinscheduler-ui/src/views/home/components/state-card.tsx +++ b/dolphinscheduler-ui/src/views/home/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}>
