diff --git a/src/component/panels/Panels.tsx b/src/component/panels/Panels.tsx index 3aa0708f3..145ce8adb 100644 --- a/src/component/panels/Panels.tsx +++ b/src/component/panels/Panels.tsx @@ -13,7 +13,6 @@ import InformationPanel from './InformationPanel'; import IntegralPanel from './IntegralsPanel/IntegralPanel'; import MatrixGenerationPanel from './MatrixGenerationPanel/MatrixGenerationPanel'; import MoleculePanel from './MoleculesPanel/MoleculePanel'; -import MultipleSpectraAnalysisPanel from './MultipleSpectraAnalysisPanel/MultipleSpectraAnalysisPanel'; import PeaksPanel from './PeaksPanel/PeaksPanel'; import RangesPanel from './RangesPanel/RangesPanel'; import SpectrumListPanel from './SpectrumsPanel/SpectrumListPanel'; @@ -21,6 +20,7 @@ import SummaryPanel from './SummaryPanel/SummaryPanel'; import ZonesPanel from './ZonesPanel/ZonesPanel'; import DatabasePanel from './databasePanel/DatabasePanel'; import FilterPanel from './filtersPanel/FilterPanel'; +import MultipleSpectraAnalysisPanel from './multipleAnalysisPanel/MultipleSpectraAnalysisPanel'; import PredictionPane from './predictionPanel/PredictionPanel'; import SpectrumSimulation from './spectrumSimulation/SpectrumSimulation'; diff --git a/src/component/panels/MultipleSpectraAnalysisPanel/AlignSpectra.tsx b/src/component/panels/multipleAnalysisPanel/AlignSpectra.tsx similarity index 100% rename from src/component/panels/MultipleSpectraAnalysisPanel/AlignSpectra.tsx rename to src/component/panels/multipleAnalysisPanel/AlignSpectra.tsx diff --git a/src/component/panels/MultipleSpectraAnalysisPanel/AnalysisChart.tsx b/src/component/panels/multipleAnalysisPanel/AnalysisChart.tsx similarity index 100% rename from src/component/panels/MultipleSpectraAnalysisPanel/AnalysisChart.tsx rename to src/component/panels/multipleAnalysisPanel/AnalysisChart.tsx diff --git a/src/component/panels/MultipleSpectraAnalysisPanel/MultipleSpectraAnalysisPanel.tsx b/src/component/panels/multipleAnalysisPanel/MultipleSpectraAnalysisPanel.tsx similarity index 93% rename from src/component/panels/MultipleSpectraAnalysisPanel/MultipleSpectraAnalysisPanel.tsx rename to src/component/panels/multipleAnalysisPanel/MultipleSpectraAnalysisPanel.tsx index 19acf92e8..ac0c523d2 100644 --- a/src/component/panels/MultipleSpectraAnalysisPanel/MultipleSpectraAnalysisPanel.tsx +++ b/src/component/panels/multipleAnalysisPanel/MultipleSpectraAnalysisPanel.tsx @@ -26,6 +26,7 @@ import DefaultPanelHeader from '../header/DefaultPanelHeader'; import PreferencesHeader from '../header/PreferencesHeader'; import AlignSpectra from './AlignSpectra'; +import AnalysisChart from './AnalysisChart'; import MultipleSpectraAnalysisTable from './MultipleSpectraAnalysisTable'; import MultipleSpectraAnalysisPreferences from './preferences'; @@ -168,11 +169,16 @@ function MultipleSpectraAnalysisPanelInner({ onClose={() => setCalibration(false)} /> ) : ( - +
+ {showAnalysisChart && ( + + )} + +
)}