From d34c25308950871849935d078d1e4d60b0c92871 Mon Sep 17 00:00:00 2001 From: Chneemann Date: Fri, 31 May 2024 18:41:36 +0200 Subject: [PATCH] update form id & name --- .../channel-informations.component.html | 9 ++++++++- .../chat-msg-box/chat-msg-box.component.html | 2 ++ .../main-chat/main-chat.component.html | 17 ++++++++++------- .../show-channel-member.component.html | 3 +++ .../add-new-channel.component.html | 4 ++++ .../edit-user-details.component.html | 3 +++ .../header/search-bar/search-bar.component.html | 3 +++ 7 files changed, 33 insertions(+), 8 deletions(-) diff --git a/src/app/components/main-chat/channel-informations/channel-informations.component.html b/src/app/components/main-chat/channel-informations/channel-informations.component.html index d8429df..40588a8 100644 --- a/src/app/components/main-chat/channel-informations/channel-informations.component.html +++ b/src/app/components/main-chat/channel-informations/channel-informations.component.html @@ -45,7 +45,14 @@ } @else {
- +
} } diff --git a/src/app/components/main-chat/chat-msg-box/chat-msg-box.component.html b/src/app/components/main-chat/chat-msg-box/chat-msg-box.component.html index 40d4697..96a6943 100644 --- a/src/app/components/main-chat/chat-msg-box/chat-msg-box.component.html +++ b/src/app/components/main-chat/chat-msg-box/chat-msg-box.component.html @@ -22,6 +22,8 @@ type="file" #fileInput id="file" + name="file" + autocomplete="off" style="display: none" (change)="onFileChange($event)" multiple diff --git a/src/app/components/main-chat/main-chat.component.html b/src/app/components/main-chat/main-chat.component.html index 5c5e913..ab91121 100644 --- a/src/app/components/main-chat/main-chat.component.html +++ b/src/app/components/main-chat/main-chat.component.html @@ -1,19 +1,22 @@
@if (checkCurrentChannel(currentChannel) == 'searchBar') { - +

{{ "main-chat.message" | translate }}

@if (toggleBoolean.openSearchWindow) { - +
@if (firstLetter == '#') { - + @for (i of checkIfUserHasAccessToChannel(); track $index) {

} } @else if (firstLetter == '@') { - + @for (i of userService.allUsers; track $index) {
@@ -58,7 +61,7 @@
} @else { @if(checkCurrentChannel(currentChannel) == 'allPrvChannels'){ - + @for (user of getPrvChat(currentChannel); track user; let i = $index) {
@@ -105,7 +108,7 @@ > } } @else if (checkCurrentChannel(currentChannel) == 'allChannels') { - + @for(channel of getChannelName(currentChannel); track channel) {
@@ -162,7 +165,7 @@ > } - + @if (openMenu) { } @else { @@ -48,6 +49,7 @@ required minlength="3" (ngModelChange)="checkIfUserNameIsValid($event)" + id="fullName" name="fullName" /> } @@ -65,6 +67,7 @@ class="inputDisabled" type="email" required + id="emailValue" name="emailValue" [(ngModel)]="userService.emailValue" [disabled]="asGuestOnline" 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 4e8f8d1..537666c 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 @@ -1,5 +1,8 @@