diff --git a/frontend/src/assets/icons/full-screen.svg b/frontend/src/assets/icons/full-screen.svg new file mode 100644 index 0000000000..79f63df87e --- /dev/null +++ b/frontend/src/assets/icons/full-screen.svg @@ -0,0 +1,16 @@ + + + diff --git a/frontend/src/components/dirent-detail/detail-item/index.js b/frontend/src/components/dirent-detail/detail-item/index.js index e9f86633a9..decdb17209 100644 --- a/frontend/src/components/dirent-detail/detail-item/index.js +++ b/frontend/src/components/dirent-detail/detail-item/index.js @@ -6,7 +6,7 @@ import { CellType, COLUMNS_ICON_CONFIG } from '../../../metadata/constants'; import './index.css'; -const DetailItem = ({ readonly = true, field, className, children }) => { +const DetailItem = ({ id, readonly = true, field, className, children }) => { const icon = useMemo(() => { if (field.type === 'size') { return COLUMNS_ICON_CONFIG[CellType.NUMBER]; @@ -15,7 +15,7 @@ const DetailItem = ({ readonly = true, field, className, children }) => { }, [field]); return ( -