Dataset Profile Editor. Minor ui fix.

This commit is contained in:
Kristian Ntavidi 2021-03-29 18:56:18 +03:00
parent 7dac466f71
commit c849ea13fe
1 changed files with 7 additions and 1 deletions

View File

@ -184,7 +184,7 @@
<!-- PREVIEW -->
<div class="col-12" >
<span style="font-weight: bold;">{{'DATASET-PROFILE-EDITOR.ACTIONS.FIELD.PREVIEW' | translate}}</span>
<span style="font-weight: bold;" *ngIf="hasFocus">{{'DATASET-PROFILE-EDITOR.ACTIONS.FIELD.PREVIEW' | translate}}</span>
<div class="mt-3" style="margin-right: -15px; margin-left: -15px;" *ngIf="previewForm && form?.get('fields').controls[0].get('viewStyle')?.value.renderStyle">
<app-form-section-inner [form]="previewForm">
@ -192,6 +192,12 @@
</app-form-section-inner>
</div>
<div class="w-100" *ngIf="!form?.get('fields').controls[0].get('viewStyle')?.value.renderStyle">
<em>
{{'DATASET-PROFILE-EDITOR.ACTIONS.FIELD.NOT-INITIALIZED' | translate}}
</em>
</div>
<hr *ngIf="hasFocus">
</div>
</div>