aboutsummaryrefslogtreecommitdiff
path: root/app/features/navbar
diff options
context:
space:
mode:
authorAndrei Gavrilescu <gavrilescu.andrei90@gmail.com>2020-04-07 14:50:37 +0300
committerSaúl Ibarra Corretgé <s@saghul.net>2020-04-07 14:30:36 +0200
commit0a18da2a9aedd9493bd3753e70fbf97dc7e53fc5 (patch)
tree36170ec0d5f63df46e0d1cb2646106fa815d8290 /app/features/navbar
parentc40ab63f188ae9c04ff014864c7b3dc9f0ea68ba (diff)
Update CI Tools
Co-authored-by: Annika Wickert <awlx@users.noreply.github.com>
Diffstat (limited to 'app/features/navbar')
-rw-r--r--app/features/navbar/components/HelpButton.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/features/navbar/components/HelpButton.js b/app/features/navbar/components/HelpButton.js
index fa07fde..469f2fd 100644
--- a/app/features/navbar/components/HelpButton.js
+++ b/app/features/navbar/components/HelpButton.js
@@ -7,6 +7,7 @@ import React, { Component } from 'react';
import config from '../../config';
import { openExternalLink } from '../../utils';
+import { version } from '../../../../package.json';
type State = {
@@ -103,6 +104,9 @@ export default class HelpButton extends Component< *, State> {
<Item onActivate = { this._onAboutClick }>
About
</Item>
+ <Item>
+ Version: { version }
+ </Item>
</Group>
</Droplist>
);