Skip to content

Commit

Permalink
fix: Inject missing Angular service (#2676)
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikriemer authored Mar 29, 2024
1 parent 92aabcd commit d8beb9c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

import { Component, EventEmitter, Input, Output } from '@angular/core';
import { SpServiceConfiguration } from '@streampipes/platform-services';
import { SemanticTypeService } from '../../../../core-services/types/semantic-type.service';

@Component({
selector: 'sp-service-configs',
Expand All @@ -28,7 +29,7 @@ export class ServiceConfigsComponent {
@Output() updateServiceConfiguration: EventEmitter<SpServiceConfiguration> =
new EventEmitter<SpServiceConfiguration>();

constructor() {}
constructor(public semanticTypeService: SemanticTypeService) {}

updateConfiguration(): void {
this.updateServiceConfiguration.emit(this.serviceConfiguration);
Expand Down

0 comments on commit d8beb9c

Please sign in to comment.