From 1ee9ac29894d728f8c1d960518e60658f64410a9 Mon Sep 17 00:00:00 2001 From: Diamantis Tziotzios Date: Tue, 2 Apr 2019 10:00:15 +0300 Subject: [PATCH] dataset wizard title change --- .../dataset-editor-wizard.component.html | 2 +- .../dataset-editor/dataset-editor-wizard.component.ts | 11 +---------- 2 files changed, 2 insertions(+), 11 deletions(-) diff --git a/dmp-frontend/src/app/ui/quick-wizard/dataset-editor/dataset-editor-wizard.component.html b/dmp-frontend/src/app/ui/quick-wizard/dataset-editor/dataset-editor-wizard.component.html index 0a663a6d2..ddfbd476f 100644 --- a/dmp-frontend/src/app/ui/quick-wizard/dataset-editor/dataset-editor-wizard.component.html +++ b/dmp-frontend/src/app/ui/quick-wizard/dataset-editor/dataset-editor-wizard.component.html @@ -1,6 +1,6 @@
-

{{'QUICKWIZARD.CREATE-ADD.CREATE.QUICKWIZARD_CREATE.THIRD-STEP.NEW-TITLE' | translate}} {{titlePrefix}}

+

{{'QUICKWIZARD.CREATE-ADD.CREATE.QUICKWIZARD_CREATE.THIRD-STEP.NEW-TITLE' | translate}}

diff --git a/dmp-frontend/src/app/ui/quick-wizard/dataset-editor/dataset-editor-wizard.component.ts b/dmp-frontend/src/app/ui/quick-wizard/dataset-editor/dataset-editor-wizard.component.ts index 73bd3c06e..2bbd802a9 100644 --- a/dmp-frontend/src/app/ui/quick-wizard/dataset-editor/dataset-editor-wizard.component.ts +++ b/dmp-frontend/src/app/ui/quick-wizard/dataset-editor/dataset-editor-wizard.component.ts @@ -1,23 +1,14 @@ import { Component, Input, OnInit } from "@angular/core"; import { FormArray, FormGroup } from "@angular/forms"; +import { TranslateService } from "@ngx-translate/core"; import { Observable } from "rxjs"; import { takeUntil } from "rxjs/operators"; import { BaseComponent } from "../../../core/common/base/base.component"; -import { DatasetProfileModel } from "../../../core/model/dataset/dataset-profile"; import { DatasetWizardService } from "../../../core/services/dataset-wizard/dataset-wizard.service"; -import { DatasetWizardEditorModel } from "../../dataset/dataset-wizard/dataset-wizard-editor.model"; import { BreadcrumbItem } from "../../misc/breadcrumb/definition/breadcrumb-item"; import { IBreadCrumbComponent } from "../../misc/breadcrumb/definition/IBreadCrumbComponent"; import { DatasetDescriptionFormEditorModel } from "../../misc/dataset-description-form/dataset-description-form.model"; import { QuickWizardDatasetDescriptionModel } from "./quick-wizard-dataset-description-model"; -import { IfStmt } from "@angular/compiler"; -import { TranslateService } from "@ngx-translate/core"; - - - - - - @Component({ selector: 'app-dataset-editor-wizard-component',