Skip to content

Commit 4bbfad8

Browse files
committed
fix uses
1 parent 9da8af0 commit 4bbfad8

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

projects/fusio-sdk/src/lib/component/app/list/list.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ import {ErrorService} from "../../../service/error.service";
1919
})
2020
export class ListComponent extends List<Client, App> {
2121

22-
constructor(fusio: ConsumerService, route: ActivatedRoute, router: Router, modalService: NgbModal, event: EventService, error: ErrorService) {
23-
super(fusio, route, router, modalService, event, error);
22+
constructor(fusio: ConsumerService, route: ActivatedRoute, router: Router, event: EventService, error: ErrorService, modalService: NgbModal) {
23+
super(fusio, route, router, event, error, modalService);
2424
}
2525

2626
protected async getAll(query: CollectionQuery): Promise<AxiosResponse<Collection<App>>> {

projects/fusio-sdk/src/lib/component/event/list/list.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ import {ErrorService} from "../../../service/error.service";
1919
})
2020
export class ListComponent extends List<Client, EventSubscription> {
2121

22-
constructor(fusio: ConsumerService, route: ActivatedRoute, router: Router, modalService: NgbModal, event: EventService, error: ErrorService) {
23-
super(fusio, route, router, modalService, event, error);
22+
constructor(fusio: ConsumerService, route: ActivatedRoute, router: Router, event: EventService, error: ErrorService, modalService: NgbModal) {
23+
super(fusio, route, router, event, error, modalService);
2424
}
2525

2626
protected async getAll(query: CollectionQuery): Promise<AxiosResponse<Collection<EventSubscription>>> {

projects/fusio-sdk/src/lib/component/sidebar/sidebar.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import {Component, EventEmitter, Input, OnInit, Output} from '@angular/core';
2-
import {ModelId} from "../../abstract/list";
2+
import {ModelId} from "../../abstract/query";
33

44
@Component({
55
selector: 'fusio-sidebar',

0 commit comments

Comments
 (0)