From 0a246a4f6f13b1112d98521b0cc7641fc91c9b0e Mon Sep 17 00:00:00 2001 From: voommen-livefront Date: Thu, 24 Jul 2025 10:46:30 -0500 Subject: [PATCH] PM-23826 changed *ngIf to @ngIf --- .../connect-dialog.component.html | 38 ++++++++++--------- 1 file changed, 21 insertions(+), 17 deletions(-) diff --git a/apps/web/src/app/admin-console/organizations/shared/components/integrations/integration-dialog/connect-dialog/connect-dialog.component.html b/apps/web/src/app/admin-console/organizations/shared/components/integrations/integration-dialog/connect-dialog/connect-dialog.component.html index 4e220a2cc03..7f28317dd67 100644 --- a/apps/web/src/app/admin-console/organizations/shared/components/integrations/integration-dialog/connect-dialog/connect-dialog.component.html +++ b/apps/web/src/app/admin-console/organizations/shared/components/integrations/integration-dialog/connect-dialog/connect-dialog.component.html @@ -4,23 +4,27 @@ {{ "connectIntegrationButtonDesc" | i18n: connectInfo.settings.name }}
- - - - - - {{ "url" | i18n }} - - - - {{ "bearerToken" | i18n }} - - - - {{ "index" | i18n }} - - - + @if (loading) { + + + + } + @if (!loading) { + + + {{ "url" | i18n }} + + + + {{ "bearerToken" | i18n }} + + + + {{ "index" | i18n }} + + + + }