removed breadcrumbs from dmp and description editor
This commit is contained in:
parent
4c0a09c707
commit
c263ab1564
|
@ -88,7 +88,6 @@
|
|||
</div>
|
||||
<div class="row stepper-title">
|
||||
<div class="col-12 pl-0 mb-1"><span>{{'DESCRIPTION-EDITOR.TOC.TITLE' | translate}}</span></div>
|
||||
<div class="col-12 pl-0"><app-navigation-breadcrumb /></div>
|
||||
</div>
|
||||
<div class="row stepper-options" id="stepper-options">
|
||||
<div class="col-12">
|
||||
|
|
|
@ -33,11 +33,6 @@
|
|||
<!-- First Step -->
|
||||
<div class="row" id="editor-form" *ngIf="this.step === 0 && this.isNew">
|
||||
<div class="col-12 blueprint-section">
|
||||
<div class="row stepper-title m-0 p-0">
|
||||
<div class="col-12">
|
||||
<app-navigation-breadcrumb />
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="heading2 col-12">{{'DMP-EDITOR.FIELDS.TITLE' | translate}} *</div>
|
||||
<div class="col-12">
|
||||
|
@ -89,9 +84,6 @@
|
|||
<div class="col-12 pl-0 mb-1">
|
||||
<span class="font-weight-bold">{{'DMP-EDITOR.TITLE' | translate}}</span>
|
||||
</div>
|
||||
<div class="col-12 pl-0">
|
||||
<app-navigation-breadcrumb />
|
||||
</div>
|
||||
</div>
|
||||
<div class="row stepper-options">
|
||||
<!-- try col-12 too -->
|
||||
|
@ -129,8 +121,8 @@
|
|||
<div>{{'DMP-EDITOR.ACTIONS.PREVIOUS-STEP' | translate}}</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-auto mb-1">
|
||||
<div *ngIf="this.step < this.maxSteps" mat-raised-button type="button" class="col-auto stepper-btn ml-auto" [ngClass]="{ 'next-disabled': this.step === this.maxSteps, 'next': this.step < selectedBlueprint?.definition?.sections?.length, 'description-next': this.step >= selectedBlueprint?.definition?.sections?.length }" (click)="nextStep()">
|
||||
<div *ngIf="this.step < this.maxSteps" class="col-auto mb-1">
|
||||
<div mat-raised-button type="button" class="stepper-btn" [ngClass]="{ 'next-disabled': this.step === this.maxSteps, 'next': this.step < selectedBlueprint?.definition?.sections?.length, 'description-next': this.step >= selectedBlueprint?.definition?.sections?.length }" (click)="nextStep()">
|
||||
<div>{{'DMP-EDITOR.ACTIONS.NEXT-STEP' | translate}}</div>
|
||||
<span class="material-icons">chevron_right</span>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue