diff --git a/dmp-frontend/src/app/ui/dashboard/dashboard.module.ts b/dmp-frontend/src/app/ui/dashboard/dashboard.module.ts index 3d586304f..4fa99d50c 100644 --- a/dmp-frontend/src/app/ui/dashboard/dashboard.module.ts +++ b/dmp-frontend/src/app/ui/dashboard/dashboard.module.ts @@ -3,8 +3,8 @@ import { CommonUiModule } from '../../common/ui/common-ui.module'; import { CardComponent } from './card/card.component'; import { DashboardComponent } from './dashboard.component'; import { DashboardRoutingModule } from './dashboard.routing'; -import { RecentActivityComponent } from './recent-activity/recent-activity.component'; import { QuickWizardCreateAdd } from './quick-wizard-create-add/quick-wizard-create-add.component'; +import { RecentActivityComponent } from './recent-activity/recent-activity.component'; @NgModule({ imports: [ diff --git a/dmp-frontend/src/app/ui/dashboard/quick-wizard-create-add/quick-wizard-create-add.component.html b/dmp-frontend/src/app/ui/dashboard/quick-wizard-create-add/quick-wizard-create-add.component.html index f4c078614..014473e46 100644 --- a/dmp-frontend/src/app/ui/dashboard/quick-wizard-create-add/quick-wizard-create-add.component.html +++ b/dmp-frontend/src/app/ui/dashboard/quick-wizard-create-add/quick-wizard-create-add.component.html @@ -1,45 +1,24 @@ -
+
+
-
-
- -
-
- mode_edit +
+
+
+ -
-

{{ category | translate }}

-

{{'QUICKWIZARD.CREATE-ADD.CREATE.TITLE' | translate}}

- +
+
+
+ -
-
-
-
- -
-
- subject -
-
-

{{ category | translate }}

-

{{'QUICKWIZARD.CREATE-ADD.ADD.TITLE' | translate}}

- -
- -
- -
-
+
\ No newline at end of file diff --git a/dmp-frontend/src/app/ui/dashboard/quick-wizard-create-add/quick-wizard-create-add.component.scss b/dmp-frontend/src/app/ui/dashboard/quick-wizard-create-add/quick-wizard-create-add.component.scss index 3b7eed15a..7c10af0d1 100644 --- a/dmp-frontend/src/app/ui/dashboard/quick-wizard-create-add/quick-wizard-create-add.component.scss +++ b/dmp-frontend/src/app/ui/dashboard/quick-wizard-create-add/quick-wizard-create-add.component.scss @@ -66,3 +66,16 @@ color: rgba(0, 0, 0, 0.87); background: #fff; } + +.vl { + border-left: solid #999; + height: 100%; + } + +a { + text-decoration: none; + } + .conteiner{ + padding: 1em; + background-color: #eef1f5; + } \ No newline at end of file diff --git a/dmp-frontend/src/app/ui/quick-wizard/dmp-editor/dmp-editor-wizard.component.html b/dmp-frontend/src/app/ui/quick-wizard/dmp-editor/dmp-editor-wizard.component.html index 99d9230a7..fefab3ab2 100644 --- a/dmp-frontend/src/app/ui/quick-wizard/dmp-editor/dmp-editor-wizard.component.html +++ b/dmp-frontend/src/app/ui/quick-wizard/dmp-editor/dmp-editor-wizard.component.html @@ -29,7 +29,7 @@ + [configuration]="profilesAutoCompleteConfiguration" [disabled]="datasetIsEmpty()"> {{formGroup.get('datasetProfile').getError('backendError').message}} diff --git a/dmp-frontend/src/app/ui/quick-wizard/dmp-editor/dmp-editor-wizard.component.ts b/dmp-frontend/src/app/ui/quick-wizard/dmp-editor/dmp-editor-wizard.component.ts index ad877d60a..5c88d7e41 100644 --- a/dmp-frontend/src/app/ui/quick-wizard/dmp-editor/dmp-editor-wizard.component.ts +++ b/dmp-frontend/src/app/ui/quick-wizard/dmp-editor/dmp-editor-wizard.component.ts @@ -154,7 +154,7 @@ export class DmpEditorWizardComponent extends BaseComponent implements OnInit, I return this._service.searchDMPProfiles(request); } - dataseteIsEmpty() { + datasetIsEmpty() { if (this.datasetFormGroup && this.datasetFormGroup.get('datasetsList') && (this.datasetFormGroup.get('datasetsList') as FormArray).length != 0) { return true; }