Compare commits
No commits in common. "2b1bc2a5ce1dcb8d747c6e1e615a8511cb7b8bf4" and "402897fabc3205764035405b7fd136864fceeaea" have entirely different histories.
2b1bc2a5ce
...
402897fabc
|
@ -49,9 +49,9 @@
|
|||
<mat-horizontal-stepper [linear]="true" #stepper class="stepper" (selectionChange)="onMatStepperSelectionChange($event)" style="padding-left: 8px; padding-right: 15px;">
|
||||
|
||||
<!-- IMPORTANT TO BE !INVALID (WHEN THE TEMPLATE IS FINALIZED THE CONTORLS ARE DISABLED) -->
|
||||
<mat-step [label]="'DESCRIPTION-TEMPLATE-EDITOR.STEPS.GENERAL-INFO.TITLE' | translate" [completed]="(!formGroup.get('label').invalid && !formGroup.get('description').invalid && !formGroup.get('language').invalid)">
|
||||
<!-- <ng-template matStepLabel>{{'DESCRIPTION-TEMPLATE-EDITOR.STEPS.GENERAL-INFO.TITLE' | translate}}
|
||||
</ng-template> -->
|
||||
<mat-step [label]="generalInfoStepperLabel" [completed]="(!formGroup.get('label').invalid && !formGroup.get('description').invalid && !formGroup.get('language').invalid)">
|
||||
<div class="col-9">
|
||||
<div class="col">
|
||||
<div class="col-12">
|
||||
|
@ -169,7 +169,7 @@
|
|||
</div> -->
|
||||
</div>
|
||||
</mat-step>
|
||||
<mat-step [label]="fromStepperLabel" [completed]="formGroup.valid">
|
||||
<mat-step [label]="'DESCRIPTION-TEMPLATE-EDITOR.STEPS.FORM.TITLE' | translate" [completed]="formGroup.valid">
|
||||
<div class="row">
|
||||
|
||||
<!-- TABLE -->
|
||||
|
|
|
@ -86,15 +86,6 @@ export class DescriptionTemplateEditorComponent extends BaseEditor<DescriptionTe
|
|||
previewPropertiesFormGroup: UntypedFormGroup = null;
|
||||
finalPreviewDescriptionTemplatePersist: DescriptionTemplatePersist;
|
||||
|
||||
|
||||
get generalInfoStepperLabel(): string {
|
||||
return '1 ' + this.language.instant('DESCRIPTION-TEMPLATE-EDITOR.STEPS.GENERAL-INFO.TITLE');
|
||||
}
|
||||
|
||||
get fromStepperLabel(): string {
|
||||
return '2 ' + this.language.instant('DESCRIPTION-TEMPLATE-EDITOR.STEPS.FORM.TITLE');
|
||||
}
|
||||
|
||||
protected get canDelete(): boolean {
|
||||
return !this.isDeleted && !this.isNew && this.hasPermission(this.authService.permissionEnum.DeleteDescriptionTemplate);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue