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 2021/08/04 13:06:03 UTC

[incubator-streampipes] 03/05: [STREAMPIPES-319] Fix type declaration

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

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

commit 8c39daa8c8317cf5e4675fbf9a5cac30107d2bf5
Author: Daniel Ebi <eb...@fzi.de>
AuthorDate: Wed Aug 4 15:03:44 2021 +0200

    [STREAMPIPES-319] Fix type declaration
---
 ui/src/app/core-services/datalake/DatalakeQueryParameters.ts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ui/src/app/core-services/datalake/DatalakeQueryParameters.ts b/ui/src/app/core-services/datalake/DatalakeQueryParameters.ts
index a71616f..6859b0c 100644
--- a/ui/src/app/core-services/datalake/DatalakeQueryParameters.ts
+++ b/ui/src/app/core-services/datalake/DatalakeQueryParameters.ts
@@ -23,8 +23,8 @@ export class DatalakeQueryParameters {
   public page: number;
   public limit: number;
   public offset: number;
-  public groupBy: number;
-  public order: number;
+  public groupBy: string;
+  public order: string;
   public aggregationFunction: string;
   public timeInterval: string;
 }