From bc070d45d2715d8bbc555f6c01f7bd08f3d0ce5d Mon Sep 17 00:00:00 2001 From: jaasen-livefront Date: Mon, 20 Oct 2025 09:16:36 -0700 Subject: [PATCH] revert change to title --- libs/components/src/callout/callout.component.ts | 3 +++ 1 file changed, 3 insertions(+) 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]);