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

rename

parent b39a0cd7
No related branches found
No related tags found
1 merge request!461Components
......@@ -9,7 +9,7 @@
</nshmp-template-plot-content>
<nshmp-template-settings>
<app-plots-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 {ParameterSummaryComponent} from './components/parameter-summary/parameter-summary.component';
import {PlotsComponent} from './components/plots/plots.component';
import {PlotsSettingsComponent} from './components/plots-settings/plots-settings.component';
import {PlotSettingsPanelComponent} from './components/plot-settings-panel/plot-settings-panel.component';
describe('MainComponent', () => {
let component: AppComponent;
......@@ -22,7 +22,7 @@ describe('MainComponent', () => {
ControlPanelComponent,
ContentComponent,
PlotsComponent,
PlotsSettingsComponent,
PlotSettingsPanelComponent,
AboutComponent,
ParameterSummaryComponent,
],
......
......@@ -13,7 +13,7 @@ import {navigation} from 'projects/nshmp-apps/src/shared/utils/navigation.utils'
import {AboutComponent} from './components/about/about.component';
import {ContentComponent} from './components/content/content.component';
import {ControlPanelComponent} from './components/control-panel/control-panel.component';
import {PlotsSettingsComponent} from './components/plots-settings/plots-settings.component';
import {PlotSettingsPanelComponent} from './components/plot-settings-panel/plot-settings-panel.component';
import {AppService} from './services/app.service';
/**
......@@ -33,7 +33,7 @@ import {AppService} from './services/app.service';
NshmpLibNgAboutPageComponent,
ControlPanelComponent,
ContentComponent,
PlotsSettingsComponent,
PlotSettingsPanelComponent,
AboutComponent,
],
selector: 'app-app',
......
......@@ -2,22 +2,22 @@ import {provideHttpClient} from '@angular/common/http';
import {ComponentFixture, TestBed, waitForAsync} from '@angular/core/testing';
import {provideNoopAnimations} from '@angular/platform-browser/animations';
import {PlotsSettingsComponent} from './plots-settings.component';
import {PlotSettingsPanelComponent} from './plot-settings-panel.component';
describe('PlotsSettingsComponent', () => {
let component: PlotsSettingsComponent;
let fixture: ComponentFixture<PlotsSettingsComponent>;
describe('PlotSettingsPanelComponent', () => {
let component: PlotSettingsPanelComponent;
let fixture: ComponentFixture<PlotSettingsPanelComponent>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
imports: [PlotsSettingsComponent],
imports: [PlotSettingsPanelComponent],
providers: [provideHttpClient(), provideNoopAnimations()],
teardown: {destroyAfterEach: false},
}).compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(PlotsSettingsComponent);
fixture = TestBed.createComponent(PlotSettingsPanelComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
......
......@@ -18,12 +18,12 @@ import {AppService} from '../../services/app.service';
NshmpLibNgPlotSettingsComponent,
AsyncPipe,
],
selector: 'app-plots-settings',
selector: 'app-plot-settings-panel',
standalone: true,
styleUrl: './plots-settings.component.scss',
templateUrl: './plots-settings.component.html',
styleUrl: './plot-settings-panel.component.scss',
templateUrl: './plot-settings-panel.component.html',
})
export class PlotsSettingsComponent {
export class PlotSettingsPanelComponent {
PlotIds = gmmUtils.PlotType;
/** Mean plot state */
......
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