File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -270,4 +270,4 @@ export default function SubmitExtraction(props: SubmitExtractionProps) {
270270 </ Dialog >
271271 </ Container >
272272 ) ;
273- }
273+ }
Original file line number Diff line number Diff line change @@ -235,7 +235,7 @@ const FileSystemViewer: React.FC<{
235235 } }
236236 >
237237 < Typography variant = "h6" sx = { { ml : 2 , my : 2 } } >
238- File Selector
238+ { selectFolder ? "Select a Folder" : "Select a File" }
239239 </ Typography >
240240 { FSItems . map ( ( FSItem ) => (
241241 < RecursiveComponent
@@ -286,7 +286,7 @@ const DatasetFileViewer: React.FC<{
286286 } }
287287 >
288288 < Typography variant = "h6" sx = { { ml : 2 , my : 2 } } >
289- File Selector
289+ { selectFolder ? "Select a Folder" : "Select a File" }
290290 </ Typography >
291291 { FSItems . map ( ( FSItem ) => (
292292 < RecursiveComponent
@@ -355,7 +355,7 @@ const FileSystemSelector: React.FC<{
355355 selectionName : highlightedSelection . selectionName ,
356356 datasetId : highlightedSelection . datasetId ,
357357 selectionType : highlightedSelection . selectionType ,
358- }
358+ } ;
359359 // Convert to string
360360 const selectionString = JSON . stringify ( selection ) ;
361361 onChange ( selectionString ) ;
You can’t perform that action at this time.
0 commit comments