This commit is contained in:
Peter Maquiran
2021-06-03 14:56:53 +01:00
parent 5d8600324a
commit 8e8e1cd152
13 changed files with 22 additions and 22 deletions
@@ -15,6 +15,6 @@ import { BtnModalDismissPage } from './btn-modal-dismiss.page';
IonicModule,
BtnModalDismissPageRoutingModule
],
declarations: []
declarations: [BtnModalDismissPage]
})
export class BtnModalDismissPageModule {}
@@ -15,6 +15,6 @@ import { BtnSeguintePage } from './btn-seguinte.page';
IonicModule,
BtnSeguintePageRoutingModule
],
declarations: []
declarations: [BtnSeguintePage]
})
export class BtnSeguintePageModule {}
@@ -15,6 +15,6 @@ import { BtnAdicionarPage } from './btn-adicionar.page';
IonicModule,
BtnAdicionarPageRoutingModule
],
declarations: []
declarations: [BtnAdicionarPage]
})
export class BtnAdicionarPageModule {}
@@ -15,6 +15,6 @@ import { BtnCriarPage } from './btn-criar.page';
IonicModule,
BtnCriarPageRoutingModule
],
declarations: []
declarations: [BtnCriarPage]
})
export class BtnCriarPageModule {}
@@ -225,7 +225,7 @@ export class GroupMessagesPage implements OnInit, OnChanges {
});
}
openSendGroupMessageOptions(ev: any){
openSendGroupMessageOptions(ev?: any){
if(window.innerWidth <= 1024){
console.log('mobile');
this.openChatOptions(ev);
@@ -154,7 +154,7 @@ export class MessagesPage implements OnInit, AfterViewChecked, OnChanges {
modal.onDidDismiss();
}
openSendMessageOptions(ev:any){
openSendMessageOptions(ev?:any){
if(window.innerWidth <= 1024){
console.log('mobile');
this.openChatOptions(ev);
@@ -9,7 +9,7 @@
<button (click)="openExpedientActionsModal('1',fulltask)" full class="btn-ok" shape="round" >Pedido de Parecer</button>
<button (click)="openExpedientActionsModal('2',fulltask)" full class="btn-ok" shape="round" >Pedido de Deferimento</button>
<button (click)="openBookMeetingModal()" full class="btn-ok" shape="round" >Marcar reunião</button>
<button (click)="distartExpedientModal(fulltask)" full class="btn-ok" shape="round" >Descartar</button>
<button (click)="distartExpedientModal()" full class="btn-ok" shape="round" >Descartar</button>
<button (click)="sendExpedienteToPending()" full class="btn-ok" shape="round" *ngIf="showEnviarPendentes" >Enviar para pendentes</button>
<div class="solid"></div>
<button (click)="close()" full class="btn-cancel" shape="round" >Cancelar</button>