mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-19 21:03:17 -07:00
Removes console.log() statements.
This commit is contained in:
parent
044ba8e1eb
commit
853ca6b6bd
1 changed files with 2 additions and 9 deletions
|
@ -87,14 +87,11 @@ export class EmbyComponent implements OnInit {
|
|||
isNewServer: true,
|
||||
savedSettings: this.savedSettings,
|
||||
};
|
||||
const dialog = this.dialog.open(EmbyServerDialog, {
|
||||
this.dialog.open(EmbyServerDialog, {
|
||||
width: "700px",
|
||||
data: data,
|
||||
panelClass: "modal-panel",
|
||||
});
|
||||
dialog.afterClosed().subscribe((x) => {
|
||||
return console.log(x);
|
||||
});
|
||||
}
|
||||
|
||||
public editServer(server: IEmbyServer) {
|
||||
|
@ -103,15 +100,11 @@ export class EmbyComponent implements OnInit {
|
|||
isNewServer: false,
|
||||
savedSettings: this.savedSettings,
|
||||
};
|
||||
const dialog = this.dialog.open(EmbyServerDialog, {
|
||||
this.dialog.open(EmbyServerDialog, {
|
||||
width: "700px",
|
||||
data: data,
|
||||
panelClass: "modal-panel",
|
||||
});
|
||||
dialog.afterClosed().subscribe((x) => {
|
||||
console.log(server);
|
||||
return console.log(x);
|
||||
});
|
||||
}
|
||||
|
||||
public runIncrementalSync(): void {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue