diff --git a/src/assets/styles/common.less b/src/assets/styles/common.less index 7bc5c764..8ed396d6 100644 --- a/src/assets/styles/common.less +++ b/src/assets/styles/common.less @@ -229,6 +229,10 @@ margin-bottom: 0; } +.m-t-0 { + margin-top: 0; +} + .m-b-16 { margin-bottom: 16px; } @@ -278,10 +282,6 @@ gap: 16px; } -.gap-4 { - gap: 4px; -} - .color-white-tertiary { color: var(--color-white-tertiary); } diff --git a/src/components/seal-form/base/select.tsx b/src/components/seal-form/base/select.tsx index 7a78b6c5..7132f553 100644 --- a/src/components/seal-form/base/select.tsx +++ b/src/components/seal-form/base/select.tsx @@ -2,9 +2,11 @@ import IconFont from '@/components/icon-font'; import type { SelectProps } from 'antd'; import { Select } from 'antd'; import React, { forwardRef, useImperativeHandle } from 'react'; +import NotFoundContent from '../components/not-found-content'; const BaseSelect: React.FC = forwardRef( (props, ref) => { + const { notFoundContent, loading, ...restProps } = props; const [isFocus, setIsFocus] = React.useState(false); const inputRef = React.useRef(null); @@ -32,7 +34,13 @@ const BaseSelect: React.FC = forwardRef( return (