Attempt bugfix

This commit is contained in:
2017-04-05 11:18:08 +02:00
parent f8d629892e
commit efc2f1284d
5 changed files with 5 additions and 5 deletions
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -56,7 +56,7 @@ var __metadata = (this && this.__metadata) || function (k, v) {
var DataService = (function () {
function DataService(http) {
this.http = http;
this.dashboardURL = '/webapi/dashboard';
this.dashboardURL = '/webapi/data';
}
DataService.prototype.dashboard = function () {
var lineChartData$ =
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -51,7 +51,7 @@ router.get('/', function(req, res) {
router.get('/dashboard', function(req, res) {
router.get('/data', function(req, res) {
connection.query(
'SELECT TOE1`, time FROM measurement ORDER BY time DESC LIMIT 0,10',
+1 -1
View File
@@ -9,7 +9,7 @@ import { LabelData } from './label-data';
@Injectable()
export class DataService {
private dashboardURL: string = '/webapi/dashboard';
private dashboardURL: string = '/webapi/data';
constructor(private http : Http){}