convert y axis definition to standalone component

This commit is contained in:
2024-10-01 19:14:15 +02:00
parent b0415ed972
commit eb65b56b78
2 changed files with 22 additions and 3 deletions

View File

@@ -58,7 +58,6 @@ import { LimitByComponent } from "./limit-by/limit-by.component";
@NgModule({ declarations: [
AppComponent,
VisualizationPageComponent,
YAxisDefinitionComponent,
QueryAutocompleteComponent,
PlotDetailsComponent,
PlotViewComponent,
@@ -104,7 +103,10 @@ import { LimitByComponent } from "./limit-by/limit-by.component";
MatTableModule,
MatTooltipModule,
BrowserAnimationsModule,
OverlayModule], providers: [{
OverlayModule,
YAxisDefinitionComponent
],
providers: [{
provide: MAT_DIALOG_DEFAULT_OPTIONS,
useValue: { hasBackdrop: true },
}, provideHttpClient(withInterceptorsFromDi())] })