You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by ri...@apache.org on 2020/03/01 21:33:06 UTC

[incubator-streampipes] branch dev updated: STREAMPIPES-83: Fix bug in FeedbackController

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

riemer 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 fb7a0d1  STREAMPIPES-83: Fix bug in FeedbackController
fb7a0d1 is described below

commit fb7a0d10013f7c0dface99e0a3fbfba96170684a
Author: Dominik Riemer <ri...@fzi.de>
AuthorDate: Sun Mar 1 22:32:50 2020 +0100

    STREAMPIPES-83: Fix bug in FeedbackController
---
 ui/src/app/layout/components/feedback.controller.ts | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/ui/src/app/layout/components/feedback.controller.ts b/ui/src/app/layout/components/feedback.controller.ts
index 63001d3..78cfdcf 100644
--- a/ui/src/app/layout/components/feedback.controller.ts
+++ b/ui/src/app/layout/components/feedback.controller.ts
@@ -16,6 +16,8 @@
  *
  */
 
+import {AppCtrl} from "../app.controller";
+
 export class FeedbackController {
 
     $http: any;
@@ -31,7 +33,7 @@ export class FeedbackController {
     feedbackUrl = "";
     debugFeedbackUrl = "";
 
-    targetEmail = "dev@streampipes.apache.org";
+    targetEmail = "users@streampipes.apache.org";
 
     constructor($http, $window) {
         this.$http = $http;
@@ -69,4 +71,6 @@ export class FeedbackController {
         })
     };
 
-}
\ No newline at end of file
+}
+
+FeedbackController.$inject = ['$http', '$window'];
\ No newline at end of file