diff --git a/src/app/pages/agenda/agenda.page.ts b/src/app/pages/agenda/agenda.page.ts
index 73f143d4a..3046e9671 100644
--- a/src/app/pages/agenda/agenda.page.ts
+++ b/src/app/pages/agenda/agenda.page.ts
@@ -762,7 +762,7 @@ export class AgendaPage implements OnInit {
async cloneAllmobileComponent(){
- this.mobileComponent= {
+ this.mobileComponent = {
showAddNewEvent: false,
showEditEvent: false,
showEventDitails: false,
diff --git a/src/app/pages/chat/chat.module.ts b/src/app/pages/chat/chat.module.ts
index 70faea048..340239ee6 100644
--- a/src/app/pages/chat/chat.module.ts
+++ b/src/app/pages/chat/chat.module.ts
@@ -14,6 +14,7 @@ import { MessagesPage } from 'src/app/shared/chat/messages/messages.page';
import { EmptyChatPage } from 'src/app/shared/chat/empty-chat/empty-chat.page';
import { ContactsPage } from 'src/app/shared/chat/messages/contacts/contacts.page';
import { NewGroupPage } from 'src/app/shared/chat/new-group/new-group.page';
+import { GroupContactsPage } from 'src/app/shared/chat/group-messages/group-contacts/group-contacts.page';
@NgModule({
imports: [
@@ -30,6 +31,7 @@ import { NewGroupPage } from 'src/app/shared/chat/new-group/new-group.page';
ContactsPage,
GroupMessagesPage,
NewGroupPage,
+ GroupContactsPage,
],
schemas: [CUSTOM_ELEMENTS_SCHEMA],
entryComponents: [
@@ -37,6 +39,7 @@ import { NewGroupPage } from 'src/app/shared/chat/new-group/new-group.page';
ContactsPage,
GroupMessagesPage,
NewGroupPage,
+ GroupContactsPage,
]
})
export class ChatPageModule {}
diff --git a/src/app/pages/chat/chat.page.html b/src/app/pages/chat/chat.page.html
index d70bfca1b..9538e432b 100644
--- a/src/app/pages/chat/chat.page.html
+++ b/src/app/pages/chat/chat.page.html
@@ -93,7 +93,8 @@
-
+
+
diff --git a/src/app/pages/chat/chat.page.ts b/src/app/pages/chat/chat.page.ts
index 38ff6c12b..059c39639 100644
--- a/src/app/pages/chat/chat.page.ts
+++ b/src/app/pages/chat/chat.page.ts
@@ -62,6 +62,7 @@ export class ChatPage implements OnInit {
showContacts=false;
showNewGroup=false;
showGroupMessages=false;
+ showGroupContacts=false;
@Output() getRoomInfo;
@@ -106,6 +107,16 @@ export class ChatPage implements OnInit {
this.showNewGroup=false;
this.showGroupMessages=false;
this.showEmptyComponent=false;
+ console.log('All components closed!');
+ }
+ openGroupContactsPage(){
+ this.closeAllDesktopComponents();
+ if(window.innerWidth <= 1024){
+
+ }
+ else{
+ this.showGroupContacts = true;
+ }
}
openMessagesPage(rid) {
if( window.innerWidth <= 1024){
diff --git a/src/app/shared/chat/group-messages/group-contacts/group-contacts.page.html b/src/app/shared/chat/group-messages/group-contacts/group-contacts.page.html
index f63a629a8..e9c4d1253 100644
--- a/src/app/shared/chat/group-messages/group-contacts/group-contacts.page.html
+++ b/src/app/shared/chat/group-messages/group-contacts/group-contacts.page.html
@@ -1,7 +1,7 @@