chore: upgrade antd 6.3.3

This commit is contained in:
jialin
2026-03-17 16:35:55 +08:00
committed by jialin
parent d99475bb80
commit a86bfe7fd3
8 changed files with 1980 additions and 477 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

+1 -1
View File
@@ -211,7 +211,7 @@ const RowTextarea: React.FC<SystemMessageProps> = (props) => {
{!expanded && data.text && (
<SmallCloseButton onClick={handleClear}></SmallCloseButton>
)}
{UploadImageButton}
{/* {UploadImageButton} */}
<Tooltip title={intl.formatMessage({ id: 'common.button.delete' })}>
<Button
danger
@@ -9,7 +9,7 @@ import { tableSorter } from '@/config/settings';
import GrafanaIcon from '@/pages/_components/grafana-icon';
import { StarFilled } from '@ant-design/icons';
import { useIntl } from '@umijs/max';
import { Tooltip, Typography } from 'antd';
import { Tooltip } from 'antd';
import dayjs from 'dayjs';
import { useAtomValue } from 'jotai';
import { useMemo } from 'react';
@@ -100,9 +100,7 @@ const useClusterColumns = (
span: 3,
render: (text: string, record: ClusterListItem) => (
<>
<Typography.Link onClick={() => onCellClick?.(record, 'name')}>
{record.name}
</Typography.Link>
<AutoTooltip ghost>{record.name}</AutoTooltip>
{record.is_default && (
<Tooltip
title={intl.formatMessage({
+13 -2
View File
@@ -1,3 +1,4 @@
import VideoPoster from '@/assets/images/video-poster.png';
import { setRouteCache } from '@/atoms/route-cache';
import AlertInfo from '@/components/alert-info';
import IconFont from '@/components/icon-font';
@@ -180,10 +181,20 @@ const GroundVideo: React.FC<MessageProps> = forwardRef((props, ref) => {
boxShadow: '0 4px 24px rgba(0,0,0,0.12)'
}}
>
<Spin spinning={loading}>
<Spin
spinning={loading}
styles={{
root: {
height: '100%'
},
container: {
height: '100%'
}
}}
>
<video
src={videoList[0]?.dataUrl}
poster="https://placehold.co/640x360.png?text=GPUStack"
poster={VideoPoster}
controls
disablePictureInPicture
style={{