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

rename

parent 21e7fb45
No related branches found
No related tags found
1 merge request!461Components
...@@ -2,19 +2,19 @@ import {provideHttpClient} from '@angular/common/http'; ...@@ -2,19 +2,19 @@ import {provideHttpClient} from '@angular/common/http';
import {ComponentFixture, TestBed} from '@angular/core/testing'; import {ComponentFixture, TestBed} from '@angular/core/testing';
import {provideNoopAnimations} from '@angular/platform-browser/animations'; import {provideNoopAnimations} from '@angular/platform-browser/animations';
import {PlotSettingsComponent} from './plot-settings.component'; import {PlotSettingsPanelComponent} from './plot-settings-panel.component';
describe('PlotSettingsComponent', () => { describe('PlotSettingsComponent', () => {
let component: PlotSettingsComponent; let component: PlotSettingsPanelComponent;
let fixture: ComponentFixture<PlotSettingsComponent>; let fixture: ComponentFixture<PlotSettingsPanelComponent>;
beforeEach(async () => { beforeEach(async () => {
await TestBed.configureTestingModule({ await TestBed.configureTestingModule({
imports: [PlotSettingsComponent], imports: [PlotSettingsPanelComponent],
providers: [provideHttpClient(), provideNoopAnimations()], providers: [provideHttpClient(), provideNoopAnimations()],
}).compileComponents(); }).compileComponents();
fixture = TestBed.createComponent(PlotSettingsComponent); fixture = TestBed.createComponent(PlotSettingsPanelComponent);
component = fixture.componentInstance; component = fixture.componentInstance;
fixture.detectChanges(); fixture.detectChanges();
}); });
......
...@@ -25,12 +25,12 @@ import {AppService} from '../../services/app.service'; ...@@ -25,12 +25,12 @@ import {AppService} from '../../services/app.service';
MatExpansionPanelHeader, MatExpansionPanelHeader,
MatExpansionPanelTitle, MatExpansionPanelTitle,
], ],
selector: 'app-plot-settings', selector: 'app-plot-settings-panel',
standalone: true, standalone: true,
styleUrl: './plot-settings.component.scss', styleUrl: './plot-settings-panel.component.scss',
templateUrl: './plot-settings.component.html', templateUrl: './plot-settings-panel.component.html',
}) })
export class PlotSettingsComponent implements OnDestroy { export class PlotSettingsPanelComponent implements OnDestroy {
/** Ground motion plot */ /** Ground motion plot */
groundMotionPlot = computed(() => { groundMotionPlot = computed(() => {
this.settingsFormSubscription?.unsubscribe(); this.settingsFormSubscription?.unsubscribe();
......
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