Skip to content

Commit c85532c

Browse files
committed
fix: 将Fragment包围的text改为span
1 parent a66846c commit c85532c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/viewer/OperationRating.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ const GetLevelDescription: FC<{
1919
}> = ({ operation, layout }) => {
2020
return operation.notEnoughRating ? (
2121
layout === 'vertical' ? (
22-
<>还没有足够的评分</>
22+
<span>还没有足够的评分</span>
2323
) : (
24-
<>评分不足</>
24+
<span>评分不足</span>
2525
)
2626
) : (
2727
<Tooltip2

0 commit comments

Comments
 (0)