Profile
-diff --git a/src/app/app.component.ts b/src/app/app.component.ts index 90ae32d..d5eef9f 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -1,12 +1,9 @@ import { Component } from '@angular/core'; import { RouterOutlet } from '@angular/router'; -import { UserComponent } from './shared/components/user/user.component'; -import { EditUserDetailsComponent } from './shared/components/header/edit-user/edit-user-details/edit-user-details.component'; -import { ToggleBooleanService } from './service/toggle-boolean.service'; @Component({ selector: 'app-root', standalone: true, - imports: [RouterOutlet, UserComponent, EditUserDetailsComponent], + imports: [RouterOutlet], templateUrl: './app.component.html', styleUrl: './app.component.scss', }) diff --git a/src/app/components/main-login/login/login.component.html b/src/app/components/main-login/login/login.component.html index 4476587..5b542fc 100644 --- a/src/app/components/main-login/login/login.component.html +++ b/src/app/components/main-login/login/login.component.html @@ -1,4 +1,4 @@ -
{{ "login.errorText2" | translate }}
} @if (loginService.errorMessage) { @@ -99,4 +104,4 @@{{ 'login.errorText' | translate }}
+{{ "login.errorText" | translate }}
}- {{ 'passwordReset.errorText' | translate }} + {{ "passwordReset.errorText" | translate }}
}{{ 'add-new-channel.header' | translate }}
+{{ "add-new-channel.header" | translate }}
{{ 'add-new-channel.header2' | translate }}
+{{ "add-new-channel.header2" | translate }}
- {{ 'add-new-channel.required' | translate }} + {{ "add-new-channel.required" | translate }} @if (chechIfChannelExist(channelName)) { -{{ 'add-new-channel.warning' | translate }}
+{{ "add-new-channel.warning" | translate }}
} -{{ 'add-new-channel.description' | translate }}
+{{ "add-new-channel.description" | translate }}
- {{ 'add-new-channel.optional' | translate }} + {{ "add-new-channel.optional" | translate }}{{ 'add-new-channel.addAll' | translate }} {{ 'add-new-channel.devspace' | translate }}
++ {{ "add-new-channel.addAll" | translate }} + {{ "add-new-channel.devspace" | translate }} +
{{ 'add-new-channel.add' | translate }}
+{{ "add-new-channel.add" | translate }}
{{ i.firstName }} {{ i.lastName }}
+{{ i.firstName }} {{ i.lastName }}
{{ "login-header.profil" | translate }}
diff --git a/src/app/shared/components/header/search-bar/search-bar.component.html b/src/app/shared/components/header/search-bar/search-bar.component.html index e810ad3..4e8f8d1 100644 --- a/src/app/shared/components/header/search-bar/search-bar.component.html +++ b/src/app/shared/components/header/search-bar/search-bar.component.html @@ -3,7 +3,6 @@ type="text" maxlength="24" placeholder="{{ 'search-bar.placeholder' | translate }}" - class="fontNunito" [(ngModel)]="inputValue" (keyup)="filterAllInfo(inputValue)" /> @@ -17,9 +16,9 @@ > @if (filteredUsers.length > 0 && inputValue != '') { -
[ {{ getChannel(chat.channelId) }} ]
-{{ "search-bar.errorMessage" | translate }}
+{{ "search-bar.errorMessage" | translate }}
}Profile
-