Skip to content
Snippets Groups Projects
Commit 6de20435 authored by Clayton, Brandon Scott's avatar Clayton, Brandon Scott
Browse files

rename to plot-settings-panel

parent 0fbd046d
No related branches found
No related tags found
1 merge request!461Components
......@@ -12,7 +12,7 @@
<!-- Settings -->
<nshmp-template-settings>
<app-plot-settings />
<app-plot-settings-panel />
</nshmp-template-settings>
</nshmp-template-content-container>
......
......@@ -9,7 +9,7 @@ import {ContentComponent} from './components/content/content.component';
import {ControlPanelComponent} from './components/control-panel/control-panel.component';
import {HazardDataComponent} from './components/hazard-data/hazard-data.component';
import {ParameterSummaryComponent} from './components/parameter-summary/parameter-summary.component';
import {PlotSettingsComponent} from './components/plot-settings/plot-settings.component';
import {PlotSettingsPanelComponent} from './components/plot-settings-panel/plot-settings-panel.component';
import {PlotsComponent} from './components/plots/plots.component';
import {SpectraDataComponent} from './components/spectra-data/spectra-data.component';
import {TableDataPanelComponent} from './components/table-data-panel/table-data-panel.component';
......@@ -28,7 +28,7 @@ describe('AppComponent', () => {
HazardDataComponent,
SpectraDataComponent,
TableDataPanelComponent,
PlotSettingsComponent,
PlotSettingsPanelComponent,
AboutComponent,
ParameterSummaryComponent,
],
......
......@@ -15,7 +15,7 @@ import {devNavigation} from 'projects/nshmp-apps/src/shared/utils/navigation.uti
import {AboutComponent} from './components/about/about.component';
import {ContentComponent} from './components/content/content.component';
import {ControlPanelComponent} from './components/control-panel/control-panel.component';
import {PlotSettingsComponent} from './components/plot-settings/plot-settings.component';
import {PlotSettingsPanelComponent} from './components/plot-settings-panel/plot-settings-panel.component';
import {AppService} from './services/app.service';
@Component({
......@@ -29,7 +29,7 @@ import {AppService} from './services/app.service';
NshmpLibNgAboutPageComponent,
ControlPanelComponent,
ContentComponent,
PlotSettingsComponent,
PlotSettingsPanelComponent,
AboutComponent,
AsyncPipe,
],
......
......@@ -3,15 +3,15 @@ import {ComponentFixture, TestBed} from '@angular/core/testing';
import {provideNoopAnimations} from '@angular/platform-browser/animations';
import {provideRouter} from '@angular/router';
import {PlotSettingsComponent} from './plot-settings.component';
import {PlotSettingsPanelComponent} from './plot-settings-panel.component';
describe('PlotSettingsComponent', () => {
let component: PlotSettingsComponent;
let fixture: ComponentFixture<PlotSettingsComponent>;
describe('PlotSettingsPanelComponent', () => {
let component: PlotSettingsPanelComponent;
let fixture: ComponentFixture<PlotSettingsPanelComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [PlotSettingsComponent],
imports: [PlotSettingsPanelComponent],
providers: [
provideHttpClient(),
provideNoopAnimations(),
......@@ -19,7 +19,7 @@ describe('PlotSettingsComponent', () => {
],
}).compileComponents();
fixture = TestBed.createComponent(PlotSettingsComponent);
fixture = TestBed.createComponent(PlotSettingsPanelComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
......
......@@ -27,12 +27,12 @@ import {AppService} from '../../services/app.service';
MatExpansionPanelTitle,
AsyncPipe,
],
selector: 'app-plot-settings',
selector: 'app-plot-settings-panel',
standalone: true,
styleUrl: './plot-settings.component.scss',
templateUrl: './plot-settings.component.html',
styleUrl: './plot-settings-panel.component.scss',
templateUrl: './plot-settings-panel.component.html',
})
export class PlotSettingsComponent {
export class PlotSettingsPanelComponent {
/** Hazard plot data */
private hazardPlot = computed(() => this.service.plots().get(Plots.HAZARD));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment