fixes typos
This commit is contained in:
parent
208c85d73a
commit
80e952bea5
|
@ -13,7 +13,7 @@
|
|||
[include]="['facebook', 'twitter', 'email']"
|
||||
[show]="5"
|
||||
[showText]="true"
|
||||
[size]="3"
|
||||
[size]="2"
|
||||
[url]="baseURL"
|
||||
[title]="'Encuesta DataSurvey'"
|
||||
[image]="'../../../content/img_datasurvey/datasurvey-logo-text-white-PNG.png'"
|
||||
|
|
|
@ -172,8 +172,8 @@
|
|||
style="animation-delay: 3s"
|
||||
></div>
|
||||
</div>
|
||||
<div class="entity-share">
|
||||
<span><fa-icon [icon]="faShareAlt"></fa-icon></span>
|
||||
<div class="entity-share" *ngIf="encuesta.estado == 'ACTIVE'">
|
||||
<span><fa-icon [icon]="faShareAlt" (click)="compartir()"></fa-icon></span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -500,6 +500,10 @@ export class EncuestaComponent implements OnInit, AfterViewInit {
|
|||
document.getElementById('contextmenu-share')!.style.display = 'block';
|
||||
}
|
||||
|
||||
if (this.selectedSurvey!.estado === 'FINISHED') {
|
||||
document.getElementById('contextmenu-share')!.style.display = 'none';
|
||||
}
|
||||
|
||||
document.getElementById('contextmenu-create--separator')!.style.display = 'none';
|
||||
}
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<div class="container-fluid navbar navbar-marketing navbar-expand-lg bg-white navbar-light">
|
||||
<div class="container px-5 py-4">
|
||||
<a class="text-dark" routerLink="login"
|
||||
><img src="http://datasurvey.org/content/img_datasurvey/datasurvey-logo-text-black.svg" width="300" alt=""
|
||||
><img src="src/main/webapp/content/img_datasurvey/datasurvey-logo-text-black.svg" width="300" alt=""
|
||||
/></a>
|
||||
|
||||
<div class="col-6" style="text-align: end">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<div class="container px-5 py-4">
|
||||
<h1 class="ds-title" [hidden]="notAccount">Inicio</h1>
|
||||
<a class="text-dark" href=" " [hidden]="!notAccount">
|
||||
<img src="http://datasurvey.org/content/img_datasurvey/datasurvey-logo-text-black.svg" width="300" alt="" />
|
||||
<img src="src/main/webapp/content/img_datasurvey/datasurvey-logo-text-black.svg" width="300" alt="" />
|
||||
</a>
|
||||
|
||||
<a href=" ">
|
||||
|
|
|
@ -141,7 +141,7 @@
|
|||
"status": "Confirmar cambio de estado"
|
||||
},
|
||||
"validation": {
|
||||
"required": "Este campo es obligatorio.",
|
||||
"required": "Este campo es obligatorio",
|
||||
"minlength": "Este campo requiere al menos {{min}} caracteres.",
|
||||
"maxlength": "Este campo no puede superar más de {{max}} caracteres.",
|
||||
"min": "Este campo debe ser mayor que {{min}}.",
|
||||
|
@ -152,7 +152,7 @@
|
|||
"number": "Este campo debe ser un número.",
|
||||
"integerNumber": "Este campo debe ser un número entero.",
|
||||
"datetimelocal": "Este campo debe ser una fecha y hora.",
|
||||
"minoigual": "Este campo debe ser mayor o igual que 0."
|
||||
"minoigual": "Este campo debe ser mayor o igual que 0"
|
||||
},
|
||||
"publish": {
|
||||
"title": "Publicar encuesta",
|
||||
|
|
Loading…
Reference in New Issue