Skip to content

Commit f65db01

Browse files
committed
Updates for new Angular version
1 parent 8185f7c commit f65db01

File tree

3 files changed

+7611
-6108
lines changed

3 files changed

+7611
-6108
lines changed

cloudapp/src/app/external/external.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export class ExternalComponent implements OnInit {
4242
throw new Error('Record not found');
4343
} else {
4444
return Object.assign({items: res.items},
45-
{ id: Object.keys(res.records)[0], ...Object.values(res.records)[0] })
45+
{ id: Object.keys(res.records)[0] }, Object.values(res.records)[0] )
4646
}
4747
}),
4848
finalize(() => this.running.search = false)

cloudapp/src/app/multi-select/select-entities/select-entities.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Component, OnInit, Input, Output, EventEmitter, ViewEncapsulation } from '@angular/core';
2-
import { MatCheckboxChange } from '@angular/material';
2+
import { MatCheckboxChange } from '@angular/material/checkbox';
33
import { Entity } from '@exlibris/exl-cloudapp-angular-lib';
44

55
@Component({

0 commit comments

Comments
 (0)