diff --git a/client-v2/src/app/components/molecules/entity-description/entity-description.component.html b/client-v2/src/app/components/molecules/entity-description/entity-description.component.html index 32b1917d..741ebc5f 100644 --- a/client-v2/src/app/components/molecules/entity-description/entity-description.component.html +++ b/client-v2/src/app/components/molecules/entity-description/entity-description.component.html @@ -12,7 +12,7 @@ implements OnDestroy { ) private bindConfig$ = new Subject<{ input$: Observable; context: TContext }>() - @Input() set bind(bound: { input$: Observable; context: TContext }) { - this.bindConfig$.next(bound) + @Input() set bind(bindConfig: { input$: Observable; context: TContext } | undefined) { + if (bindConfig) this.bindConfig$.next(bindConfig) } private bound$ = this.bindConfig$.pipe( untilDestroyed(this),