This commit is contained in:
Peter Maquiran
2021-10-09 15:49:00 +01:00
parent 73e00ce962
commit a1cbbe3805
2 changed files with 6 additions and 0 deletions
@@ -37,6 +37,11 @@ export class ViewDocumentPage implements OnInit {
this.Document = this.navParams.get('Document') this.Document = this.navParams.get('Document')
this.task = this.navParams.get('task') this.task = this.navParams.get('task')
if(!this.file.title) {
this.file.title = 'Sem Título'
}
} }
ngOnInit() { ngOnInit() {
@@ -6,5 +6,6 @@
<button (click)="openExpedientActionsModal('0')" class="btn-cancel" shape="round" >Solicitar Parecer</button> <button (click)="openExpedientActionsModal('0')" class="btn-cancel" shape="round" >Solicitar Parecer</button>
<button *ngIf="!p.userRole(['PR'])" (click)="openExpedientActionsModal('2')" class="btn-cancel" shape="round" >Pedido de Deferimento</button> <button *ngIf="!p.userRole(['PR'])" (click)="openExpedientActionsModal('2')" class="btn-cancel" shape="round" >Pedido de Deferimento</button>
<button (click)="openBookMeetingModal()" class="btn-cancel" shape="round" >Marcar Reunião</button> <button (click)="openBookMeetingModal()" class="btn-cancel" shape="round" >Marcar Reunião</button>
<button class="btn-cancel" shape="round" (click)="close()">Cancelar</button>
</div> </div>
</ion-content> </ion-content>