Skip to content

Commit

Permalink
Move analyis.py and analysis.R to sub-tabs (#216)
Browse files Browse the repository at this point in the history
  • Loading branch information
WardBrian authored Sep 24, 2024
1 parent 03f1e8b commit 223463e
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions gui/src/app/pages/HomePage/SamplingWindow/SamplingWindow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,12 @@ const SamplingResultsArea: FunctionComponent<SamplingResultsAreaProps> = ({
latestRun,
}) => {
return (
<TabWidget labels={["Output", "Analysis (Py)", "Analysis (R)"]}>
<TabWidget labels={["Output", "Analysis Scripts"]}>
<SamplerOutputView latestRun={latestRun} />

<AnalysisPyWindow latestRun={latestRun} />
<AnalysisRWindow latestRun={latestRun} />
<TabWidget labels={["Python", "R"]}>
<AnalysisPyWindow latestRun={latestRun} />
<AnalysisRWindow latestRun={latestRun} />
</TabWidget>
</TabWidget>
);
};
Expand Down

0 comments on commit 223463e

Please sign in to comment.