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 @@