chore: check compatibility ux

This commit is contained in:
jialin
2025-03-31 16:21:40 +08:00
parent bd6c689d91
commit f83e49bd3d
30 changed files with 1192 additions and 583 deletions
@@ -17,10 +17,11 @@ interface SearchResultProps {
style?: React.CSSProperties;
loading?: boolean;
networkError?: boolean;
isEvaluating?: boolean;
}
const SearchResult: React.FC<SearchResultProps> = (props) => {
const { resultList, onSelect, source, networkError } = props;
const { resultList, onSelect, isEvaluating, source, networkError } = props;
const intl = useIntl();
const handleSelect = (e: any, item: any) => {
@@ -111,6 +112,7 @@ const SearchResult: React.FC<SearchResultProps> = (props) => {
updatedAt={item.updatedAt}
evaluateResult={item.evaluateResult}
active={item.id === props.current}
isEvaluating={isEvaluating}
/>
</div>
</Col>