mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-20 13:23:20 -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,
|
isNewServer: true,
|
||||||
savedSettings: this.savedSettings,
|
savedSettings: this.savedSettings,
|
||||||
};
|
};
|
||||||
const dialog = this.dialog.open(EmbyServerDialog, {
|
this.dialog.open(EmbyServerDialog, {
|
||||||
width: "700px",
|
width: "700px",
|
||||||
data: data,
|
data: data,
|
||||||
panelClass: "modal-panel",
|
panelClass: "modal-panel",
|
||||||
});
|
});
|
||||||
dialog.afterClosed().subscribe((x) => {
|
|
||||||
return console.log(x);
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public editServer(server: IEmbyServer) {
|
public editServer(server: IEmbyServer) {
|
||||||
|
@ -103,15 +100,11 @@ export class EmbyComponent implements OnInit {
|
||||||
isNewServer: false,
|
isNewServer: false,
|
||||||
savedSettings: this.savedSettings,
|
savedSettings: this.savedSettings,
|
||||||
};
|
};
|
||||||
const dialog = this.dialog.open(EmbyServerDialog, {
|
this.dialog.open(EmbyServerDialog, {
|
||||||
width: "700px",
|
width: "700px",
|
||||||
data: data,
|
data: data,
|
||||||
panelClass: "modal-panel",
|
panelClass: "modal-panel",
|
||||||
});
|
});
|
||||||
dialog.afterClosed().subscribe((x) => {
|
|
||||||
console.log(server);
|
|
||||||
return console.log(x);
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public runIncrementalSync(): void {
|
public runIncrementalSync(): void {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue