Skip to content

Commit 291bee5

Browse files
committed
Feedback | removed file download option in listing
1 parent 9aa467b commit 291bee5

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

src/components/map-projects/MapProjects.jsx

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ import TableRow from '@mui/material/TableRow';
1313
import Skeleton from '@mui/material/Skeleton';
1414
import ListItemText from '@mui/material/ListItemText'
1515
import AddIcon from '@mui/icons-material/Add'
16-
import FileIcon from '@mui/icons-material/AttachFile';
1716
import times from 'lodash/times'
1817
import APIService from '../../services/APIService'
1918
import { getCurrentUser } from '../../common/utils'
@@ -116,17 +115,7 @@ const MapProjects = () => {
116115
</span>
117116
</TableCell>
118117
<TableCell>
119-
<ListItemText
120-
primary={project.name}
121-
secondary={
122-
<a href={project.file_url} rel="noreferrer noopener" target="_blank">
123-
<span style={{display: 'flex', alignItems: 'center', marginLeft: '-2px'}}>
124-
<FileIcon sx={{fontSize: '14px'}} />
125-
{project.input_file_name}
126-
</span>
127-
</a>
128-
}
129-
/>
118+
<ListItemText primary={project.name} />
130119
</TableCell>
131120
<TableCell>
132121
<ListItemText

0 commit comments

Comments
 (0)