Skip to content
This repository has been archived by the owner on Nov 21, 2024. It is now read-only.

Commit

Permalink
fix(base-resource-list): Change type of "onLoaded" property Input => …
Browse files Browse the repository at this point in the history
…Output
  • Loading branch information
EndyKaufman committed Nov 10, 2017
1 parent 60ad68f commit 2a8190c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import 'rxjs/add/operator/takeUntil';

import { Component, EventEmitter, Input } from '@angular/core';
import { Component, EventEmitter, Input, Output } from '@angular/core';
import { EndpointStatusEnum, User } from '@rucken/core';

import { BaseComponent } from '../../base-component/base-component.component';
Expand All @@ -14,7 +14,7 @@ export class BaseResourcesListComponent extends BaseComponent {

@Input()
loadAll?: boolean;
@Input()
@Output()
onLoaded: EventEmitter<any[]> = new EventEmitter<any[]>();

items: any[];
Expand Down

0 comments on commit 2a8190c

Please # to comment.