Skip to content

Commit e1e7e3c

Browse files
committed
Correcting heading of box
1 parent 23fa6e1 commit e1e7e3c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

frontend/src/components/listeners/SubmitExtraction.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,4 +270,4 @@ export default function SubmitExtraction(props: SubmitExtractionProps) {
270270
</Dialog>
271271
</Container>
272272
);
273-
}
273+
}

frontend/src/components/navigation/FileSystemSelector.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)