mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-20 05:16:07 +00:00
Bug fix presenting role
This commit is contained in:
@@ -2,9 +2,9 @@
|
||||
<div class="main-content d-flex height-100">
|
||||
<div class="content d-flex flex-column width-100">
|
||||
<div class="title" lines="none">
|
||||
{{modalTitle[taskType]}}
|
||||
{{modalTitle[taskType]}} <br>
|
||||
<i style="margin-top: 10px; font-size: 15px;" > Campos marcados com * são obrigatórios</i>
|
||||
</div>
|
||||
<i style="margin-top: 10px; font-size: 15px;" > Campos marcados com * são obrigatórios</i>
|
||||
<div class="ion-item-container width-100" [class.input-error]="Form?.get('Subject')?.invalid && validateFrom ">
|
||||
<ion-input autocomplete="on" autocorrect="on" spellcheck="true" placeholder="Assunto*" [(ngModel)]="postData.DispatchFolder.Subject"></ion-input>
|
||||
</div>
|
||||
|
||||
@@ -1232,7 +1232,7 @@ export class AgendaPage implements OnInit {
|
||||
let taskParticipants = [{
|
||||
EmailAddress: SessionStore.user.Email,
|
||||
IsRequired: true,
|
||||
Name: SessionStore.user.UserName
|
||||
Name: SessionStore.user.FullName
|
||||
}]
|
||||
const modal = await this.modalCtrl.create({
|
||||
component: NewEventPage,
|
||||
@@ -1258,7 +1258,7 @@ export class AgendaPage implements OnInit {
|
||||
this.taskParticipants = [{
|
||||
EmailAddress: SessionStore.user.Email,
|
||||
IsRequired: true,
|
||||
Name: SessionStore.user.UserName
|
||||
Name: SessionStore.user.FullName
|
||||
}]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -24,7 +24,7 @@ ion-content{
|
||||
.middle{
|
||||
padding: 0!important;
|
||||
float: left;
|
||||
width: 300px;
|
||||
width: max-content;
|
||||
margin: 2.5px 0 0 5px;
|
||||
}
|
||||
}
|
||||
|
||||
+2
@@ -3,6 +3,8 @@
|
||||
<div class="content d-flex flex-column width-100">
|
||||
<ion-item lines="none">
|
||||
<ion-label class="title">{{modalTitle[taskType]}}</ion-label> <br>
|
||||
</ion-item>
|
||||
<ion-item lines="none">
|
||||
<i style="margin-top: -3px; font-size: 15px;" > Campos marcados com * são obrigatórios</i>
|
||||
</ion-item>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user