diff --git a/src-ui/src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html b/src-ui/src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html index b1b91b31e..a82328c89 100644 --- a/src-ui/src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html +++ b/src-ui/src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -50,34 +50,35 @@
Warning: changing the token cannot be undone
@if (socialAccounts?.length > 0) { -
-

Connected social accounts

-
- -
Warning: changing the social accounts cannot be undone
+
+

Connected social accounts

+
+
    + @for (account of socialAccounts; track account.id) { +
  • {{account.name}} +
  • + } +
+
Warning: changing the social accounts cannot be undone
+
-
- } - @if (socialAccountProviders?.length > 0) { -
-

Available social account providers

-
-
    - @for (provider of socialAccountProviders; track provider.name) { -
  • {{provider.name}}
  • - } -
-
Warning: changing the social account providers cannot be undone
+ } + @if (socialAccountProviders?.length > 0) { +
+

Available social account providers

+
+
    + @for (provider of socialAccountProviders; track provider.name) { +
  • {{provider.name}}
  • + } +
+
Warning: changing the social account providers cannot be undone
+
-
}