upgrade to angular 10 intermediate commit

This commit is contained in:
Giuseppe Digilio
2020-11-20 17:06:42 +01:00
parent 79285b203b
commit 59a0263817
9 changed files with 1345 additions and 464 deletions

View File

@@ -1,4 +1,4 @@
import { Inject, OnDestroy, OnInit } from '@angular/core';
import { Inject, OnDestroy, OnInit, Directive } from '@angular/core';
import { Observable, Subscription } from 'rxjs';
import { filter, startWith } from 'rxjs/operators';
@@ -14,6 +14,7 @@ export interface SectionDataModel {
/**
* An abstract model class for a submission edit form section.
*/
@Directive()
export abstract class SectionModelComponent implements OnDestroy, OnInit, SectionDataModel {
protected abstract sectionService: SectionsService;