feat: migrate everything to standalone and fix build errors

This commit is contained in:
Enea Jahollari
2023-09-25 12:43:29 +02:00
parent 4171ccc8f3
commit 54614c21f0
1311 changed files with 13140 additions and 8009 deletions

View File

@@ -1,4 +1,6 @@
import { Component } from '@angular/core';
import { CurationFormComponent } from "../../curation-form/curation-form.component";
import { TranslateModule } from "@ngx-translate/core";
/**
* Component responsible for rendering the system wide Curation Task UI
@@ -6,6 +8,11 @@ import { Component } from '@angular/core';
@Component({
selector: 'ds-admin-curation-task',
templateUrl: './admin-curation-tasks.component.html',
imports: [
CurationFormComponent,
TranslateModule
],
standalone: true
})
export class AdminCurationTasksComponent {