test
This commit is contained in:
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
@@ -469,10 +469,10 @@ var LineChartComponent = (function () {
|
|||||||
}
|
}
|
||||||
LineChartComponent.prototype.ngOnInit = function () {
|
LineChartComponent.prototype.ngOnInit = function () {
|
||||||
var _this = this;
|
var _this = this;
|
||||||
|
console.log("ChartComponentID= " + this.id);
|
||||||
this.dataService
|
this.dataService
|
||||||
.get(this.id)
|
.get(this.id)
|
||||||
.subscribe(function (res) {
|
.subscribe(function (res) {
|
||||||
console.log("ChartComponentID= " + _this.id);
|
|
||||||
console.log("Received from service:");
|
console.log("Received from service:");
|
||||||
console.log(res);
|
console.log(res);
|
||||||
var newDataSet2 = [];
|
var newDataSet2 = [];
|
||||||
|
|||||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -42,11 +42,10 @@ export class LineChartComponent implements OnInit {
|
|||||||
constructor(private dataService: DataService) {}
|
constructor(private dataService: DataService) {}
|
||||||
|
|
||||||
ngOnInit(): void {
|
ngOnInit(): void {
|
||||||
|
console.log("ChartComponentID= "+ this.id);
|
||||||
this.dataService
|
this.dataService
|
||||||
.get(this.id)
|
.get(this.id)
|
||||||
.subscribe(res => {
|
.subscribe(res => {
|
||||||
console.log("ChartComponentID= "+ this.id);
|
|
||||||
console.log("Received from service:");
|
console.log("Received from service:");
|
||||||
console.log(res);
|
console.log(res);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user