mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 20:40:15 +02:00
fix image column container
This commit is contained in:
@@ -3,7 +3,6 @@ import styles from './image-column.module.css';
|
||||
import {
|
||||
ItemTableListInnerColumn,
|
||||
TableColumnContainer,
|
||||
TableColumnTextContainer,
|
||||
} from '/@/renderer/components/item-list/item-table-list/item-table-list-column';
|
||||
import { Image } from '/@/shared/components/image/image';
|
||||
import { Skeleton } from '/@/shared/components/skeleton/skeleton';
|
||||
@@ -15,9 +14,9 @@ export const ImageColumn = (props: ItemTableListInnerColumn) => {
|
||||
|
||||
if (typeof row === 'string') {
|
||||
return (
|
||||
<TableColumnTextContainer {...props}>
|
||||
<TableColumnContainer {...props}>
|
||||
<Image src={row} />
|
||||
</TableColumnTextContainer>
|
||||
</TableColumnContainer>
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user