@@ -164,100 +164,3 @@ export const DownloadGroupParams: React.FC<DownloadGroupParamsProps> = () => {
164
164
</ Box >
165
165
) ;
166
166
} ;
167
-
168
- {
169
- /* <InputLabel sx={{ color: Theme.palette.text.primary }}>Gene</InputLabel>
170
- <Select
171
- id={'gene-select'}
172
- label={'Gene'}
173
- value={geneValue}
174
- onChange={handleGeneChange}
175
- sx={{ height: '3rem' }}
176
- MenuProps={{
177
- PaperProps: {
178
- sx: {
179
- maxWidth: '10rem',
180
- maxHeight: '15rem',
181
- bgcolor: Theme.palette.background.default,
182
- },
183
- },
184
- }}
185
- >
186
- <MenuItem key={'eys'} value={'EYS'} sx={{ whiteSpace: 'normal' }}>
187
- <Typography
188
- sx={{
189
- width: '100%',
190
- fontSize: '1rem',
191
- textAlign: 'left',
192
- overflowWrap: 'break-word',
193
- }}
194
- >
195
- EYS
196
- </Typography>
197
- </MenuItem>
198
- </Select> */
199
- }
200
-
201
- {
202
- /* <InputLabel sx={{ color: Theme.palette.text.primary }}>Save To</InputLabel>
203
- <Select
204
- id={'save-to-select'}
205
- label={'Save To'}
206
- value={saveToValue}
207
- onChange={handleSaveToChange}
208
- sx={{ height: '3rem' }}
209
- MenuProps={{
210
- PaperProps: {
211
- sx: {
212
- maxWidth: '15.7rem',
213
- maxHeight: '20rem',
214
- bgcolor: Theme.palette.background.default,
215
- },
216
- },
217
- }}
218
- >
219
- <MenuItem key={'new-file'} value={'/'} sx={{ whiteSpace: 'normal' }}>
220
- <Typography
221
- sx={{
222
- width: '100%',
223
- fontSize: '1rem',
224
- textAlign: 'left',
225
- overflowWrap: 'break-word',
226
- }}
227
- >
228
- New file...
229
- </Typography>
230
- </MenuItem>
231
- <ListSubheader key={'root'} sx={{ bgcolor: Theme.palette.background.default, whiteSpace: 'normal' }}>
232
- <Typography sx={{ fontSize: '0.875rem', fontWeight: 'bold', overflowWrap: 'break-word' }}>
233
- root:
234
- </Typography>
235
- </ListSubheader>
236
- {fileArray.map((file) => {
237
- if (file.type === FileTypes.FOLDER) {
238
- return (
239
- <ListSubheader key={file.id} sx={{ bgcolor: Theme.palette.background.default, whiteSpace: 'normal' }}>
240
- <Typography sx={{ fontSize: '0.875rem', fontWeight: 'bold', overflowWrap: 'break-word' }}>
241
- {file.id}:
242
- </Typography>
243
- </ListSubheader>
244
- );
245
- }
246
-
247
- return (
248
- <MenuItem key={file.id} value={file.id} sx={{ whiteSpace: 'normal' }}>
249
- <Typography
250
- sx={{
251
- width: '100%',
252
- fontSize: '1rem',
253
- textAlign: 'left',
254
- overflowWrap: 'break-word',
255
- }}
256
- >
257
- {file.label}
258
- </Typography>
259
- </MenuItem>
260
- );
261
- }) }
262
- </Select> */
263
- }
0 commit comments