You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by wi...@apache.org on 2020/09/14 16:10:47 UTC

[incubator-streampipes] branch rel/0.67.0 updated: [hotfix] add timestamp as header

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

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


The following commit(s) were added to refs/heads/rel/0.67.0 by this push:
     new 5d31bd9  [hotfix] add timestamp as header
5d31bd9 is described below

commit 5d31bd9abda80f705fe70b5da0ecceeae721865c
Author: Patrick Wiener <wi...@fzi.de>
AuthorDate: Mon Sep 14 18:06:45 2020 +0200

    [hotfix] add timestamp as header
---
 .../components/schema-editor/event-schema/event-schema.component.ts      | 1 +
 1 file changed, 1 insertion(+)

diff --git a/ui/src/app/connect/components/schema-editor/event-schema/event-schema.component.ts b/ui/src/app/connect/components/schema-editor/event-schema/event-schema.component.ts
index e452edb..98972c2 100644
--- a/ui/src/app/connect/components/schema-editor/event-schema/event-schema.component.ts
+++ b/ui/src/app/connect/components/schema-editor/event-schema/event-schema.component.ts
@@ -171,6 +171,7 @@ export class EventSchemaComponent implements OnChanges {
     eventProperty.runtimeName = 'timestamp';
     eventProperty.label = 'Timestamp';
     eventProperty.domainProperties = ['http://schema.org/DateTime'];
+    eventProperty.propertyScope = 'Header'
     eventProperty.runtimeType = this.dataTypesService.getNumberTypeUrl();
 
     this.eventSchema.eventProperties.push(eventProperty);