Skip to content

Commit

Permalink
Correcting heading of box
Browse files Browse the repository at this point in the history
  • Loading branch information
Vismayak committed Jan 21, 2025
1 parent 23fa6e1 commit e1e7e3c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/listeners/SubmitExtraction.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -270,4 +270,4 @@ export default function SubmitExtraction(props: SubmitExtractionProps) {
</Dialog>
</Container>
);
}
}
6 changes: 3 additions & 3 deletions frontend/src/components/navigation/FileSystemSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ const FileSystemViewer: React.FC<{
}}
>
<Typography variant="h6" sx={{ ml: 2, my: 2 }}>
File Selector
{selectFolder ? "Select a Folder" : "Select a File"}
</Typography>
{FSItems.map((FSItem) => (
<RecursiveComponent
Expand Down Expand Up @@ -286,7 +286,7 @@ const DatasetFileViewer: React.FC<{
}}
>
<Typography variant="h6" sx={{ ml: 2, my: 2 }}>
File Selector
{selectFolder ? "Select a Folder" : "Select a File"}
</Typography>
{FSItems.map((FSItem) => (
<RecursiveComponent
Expand Down Expand Up @@ -355,7 +355,7 @@ const FileSystemSelector: React.FC<{
selectionName: highlightedSelection.selectionName,
datasetId: highlightedSelection.datasetId,
selectionType: highlightedSelection.selectionType,
}
};
// Convert to string
const selectionString = JSON.stringify(selection);
onChange(selectionString);
Expand Down

0 comments on commit e1e7e3c

Please sign in to comment.