You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by eb...@apache.org on 2020/05/13 10:37:31 UTC

[incubator-streampipes] 06/09: Add measure name to data result

This is an automated email from the ASF dual-hosted git repository.

ebi pushed a commit to branch timeseries-labeling
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes.git

commit 98d95b707b30ab3e5d1877d8db113a004ca31c89
Author: Daniel Ebi <eb...@fzi.de>
AuthorDate: Wed May 13 10:56:18 2020 +0200

    Add measure name to data result
---
 ui/src/app/core-model/datalake/DataResult.ts | 1 +
 1 file changed, 1 insertion(+)

diff --git a/ui/src/app/core-model/datalake/DataResult.ts b/ui/src/app/core-model/datalake/DataResult.ts
index bf0c051..1ef85b9 100644
--- a/ui/src/app/core-model/datalake/DataResult.ts
+++ b/ui/src/app/core-model/datalake/DataResult.ts
@@ -17,6 +17,7 @@
  */
 
 export class DataResult {
+    measureName: string;
     total: number;
     headers: string[];
     rows: any[];