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/06/23 08:45:45 UTC

[incubator-streampipes] branch dev updated: Fix typo in method name

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

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


The following commit(s) were added to refs/heads/dev by this push:
     new 3417489  Fix typo in method name
3417489 is described below

commit 341748904aef02dcc615839760947d481f552c33
Author: Daniel Ebi <eb...@fzi.de>
AuthorDate: Tue Jun 23 10:47:36 2020 +0200

    Fix typo in method name
---
 .../data-explorer/components/widgets/base/base-data-explorer-widget.ts  | 2 +-
 .../components/widgets/line-chart/line-chart-widget.component.ts        | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/ui/src/app/data-explorer/components/widgets/base/base-data-explorer-widget.ts b/ui/src/app/data-explorer/components/widgets/base/base-data-explorer-widget.ts
index 56923a3..4536410 100644
--- a/ui/src/app/data-explorer/components/widgets/base/base-data-explorer-widget.ts
+++ b/ui/src/app/data-explorer/components/widgets/base/base-data-explorer-widget.ts
@@ -98,7 +98,7 @@ export abstract class BaseDataExplorerWidget implements OnChanges {
     return propertyKeys;
   }
 
-  getDimenstionProperties(eventSchema: EventSchema) {
+  getDimensionProperties(eventSchema: EventSchema) {
     const result: EventProperty[] = [];
     eventSchema.eventProperties.forEach(property => {
       if (property.propertyScope === 'DIMENSION_PROPERTY') {
diff --git a/ui/src/app/data-explorer/components/widgets/line-chart/line-chart-widget.component.ts b/ui/src/app/data-explorer/components/widgets/line-chart/line-chart-widget.component.ts
index e071503..8e97619 100644
--- a/ui/src/app/data-explorer/components/widgets/line-chart/line-chart-widget.component.ts
+++ b/ui/src/app/data-explorer/components/widgets/line-chart/line-chart-widget.component.ts
@@ -136,7 +136,7 @@ export class LineChartWidgetComponent extends BaseDataExplorerWidget implements
   ngOnInit(): void {
 
     this.availableColumns = this.getNumericProperty(this.dataExplorerWidget.dataLakeMeasure.eventSchema);
-    this.dimensionProperties = this.getDimenstionProperties(this.dataExplorerWidget.dataLakeMeasure.eventSchema);
+    this.dimensionProperties = this.getDimensionProperties(this.dataExplorerWidget.dataLakeMeasure.eventSchema);
 
     // Reduce selected columns when more then 6
     this.selectedColumns = this.availableColumns.length > 6 ? this.availableColumns.slice(0, 5) : this.availableColumns;