Skip to content

Commit

Permalink
feat: add tabs to Uncategorized page (ET-310) (#9547)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkim-det committed Jun 25, 2024
1 parent 651264b commit 9413e24
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions webui/react/src/pages/ProjectDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ const ProjectDetails: React.FC = () => {
</div>
),
key: 'runs',
label: id === 1 ? '' : 'Runs',
label: 'Runs',
});
} else {
items.push({
Expand Down Expand Up @@ -129,11 +129,11 @@ const ProjectDetails: React.FC = () => {
</div>
),
key: 'searches',
label: id === 1 ? '' : 'Searches',
label: 'Searches',
});
}

if (!project.immutable && projectId) {
if ((f_flat_runs || !project.immutable) && projectId) {
items.push({
children: (
<div className={css.tabPane}>
Expand Down

0 comments on commit 9413e24

Please sign in to comment.