You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by mc...@apache.org on 2019/06/07 17:22:35 UTC

[nifi-fds] branch master updated: [NIFI-5295] display fds version in demo app

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

mcgilman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nifi-fds.git


The following commit(s) were added to refs/heads/master by this push:
     new c22e911  [NIFI-5295] display fds version in demo app
c22e911 is described below

commit c22e911af9204a433fcdad0d111bc7313100efe5
Author: Scott Aslan <sc...@gmail.com>
AuthorDate: Thu Jun 6 23:39:50 2019 -0400

    [NIFI-5295] display fds version in demo app
    
    This closes #29
---
 package.json                   | 2 +-
 webapp/services/fds.service.js | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/package.json b/package.json
index 085acad..f51f300 100644
--- a/package.json
+++ b/package.json
@@ -14,7 +14,7 @@
     "//": "See the License for the specific language governing permissions and",
     "//": "limitations under the License.",
     "name": "nifi-fds",
-    "version": "0.1.0",
+    "version": "0.2.0-SNAPSHOT",
     "scripts": {
         "start": "./node_modules/http-server/bin/http-server --gzip -p 28080 .",
         "build:webapp:bundle:development": "npm run webpack:development",
diff --git a/webapp/services/fds.service.js b/webapp/services/fds.service.js
index b07dc5a..3dfc39b 100644
--- a/webapp/services/fds.service.js
+++ b/webapp/services/fds.service.js
@@ -18,6 +18,7 @@
 import { TdDataTableService } from '@covalent/core/bundles/covalent-core.umd.min.js';
 import { FdsDialogService } from '@flow-design-system/dialogs';
 import { FdsSnackBarService } from '@flow-design-system/snackbars';
+import {version} from '../../package.json';
 
 /**
  * FdsService constructor.
@@ -34,7 +35,7 @@ function FdsService(tdDataTableService, fdsDialogService, fdsSnackBarService) {
     this.dataTableService = tdDataTableService;
 
     // General
-    this.title = 'Apache NiFi Flow Design System Demo';
+    this.title = 'Apache NiFi Flow Design System Demo v' + version;
     this.inProgress = true;
     this.perspective = '';
 }