Skip to content

Commit 281106a

Browse files
authored
fix(build): fix problems with build library for angular < 9 (#14)
1 parent 3efb9bf commit 281106a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

projects/filestack-angular/src/lib/picker/pickerBase.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Input, Output, OnInit, Inject, OnDestroy, Directive } from '@angular/core';
1+
import { Input, Output, OnInit, Inject, OnDestroy } from '@angular/core';
22
import { Subject } from 'rxjs';
33
import { FilestackService } from '../filestack.service';
44
import {
@@ -10,7 +10,7 @@ import {
1010
FilestackError
1111
} from 'filestack-js';
1212

13-
@Directive()
13+
1414
export abstract class PickerBaseComponent implements OnInit, OnDestroy {
1515

1616
public elementId = 'picker-container';

0 commit comments

Comments
 (0)