Skip to content

Commit

Permalink
Make sure only dataset extractors are shown on the analysis tab for a…
Browse files Browse the repository at this point in the history
… dataset.
  • Loading branch information
lmarini committed Oct 15, 2024
1 parent 1712540 commit 78f0f7b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/datasets/Dataset.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ export const Dataset = (): JSX.Element => {
: TabStyle
}
>
<Listeners datasetId={datasetId} />
<Listeners datasetId={datasetId} process="dataset" />
</TabPanel>
<TabPanel value={selectedTabIndex} index={4}>
<ExtractionHistoryTab datasetId={datasetId} />
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/files/File.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ export const File = (): JSX.Element => {
: TabStyle
}
>
<Listeners fileId={fileId} datasetId={datasetId} process={"file"} />
<Listeners fileId={fileId} datasetId={datasetId} process="file" />
</TabPanel>
<TabPanel value={selectedTabIndex} index={4}>
<ExtractionHistoryTab fileId={fileId} />
Expand Down

0 comments on commit 78f0f7b

Please sign in to comment.