diff --git a/libs/components/src/callout/callout.component.ts b/libs/components/src/callout/callout.component.ts index b097e1b0914..bbf05f56ed4 100644 --- a/libs/components/src/callout/callout.component.ts +++ b/libs/components/src/callout/callout.component.ts @@ -45,6 +45,9 @@ export class CalloutComponent implements AfterViewInit { ); readonly titleComputed = computed(() => { const title = this.title(); + if (title === null) { + return undefined; + } const type = this.type(); if (title == null && defaultI18n[type] != null) { return this.i18nService.t(defaultI18n[type]);