File tree Expand file tree Collapse file tree 1 file changed +20
-5
lines changed
src/renderer/components/about-us Expand file tree Collapse file tree 1 file changed +20
-5
lines changed Original file line number Diff line number Diff line change @@ -2,27 +2,42 @@ import { remote, shell } from 'electron'
22import * as React from 'react'
33import { Box , Text } from 'rebass'
44
5- const createIssue : React . MouseEventHandler < HTMLAnchorElement > = event => {
5+ const openUrl = ( url : string ) : React . MouseEventHandler < HTMLAnchorElement > => event => {
66 event . preventDefault ( )
7- shell . openExternal ( 'https://github.com/codecentric/merge-request-notifier/issues/new' )
7+ shell . openExternal ( url )
88}
99
1010export const AboutUsPage = ( ) => {
1111 const appVersion = remote . app . getVersion ( )
1212
1313 return (
1414 < Box p = { 2 } >
15- < Text >
15+ < Text fontSize = '14px' >
1616 This app was build because our team was searching for a tool to see the number of our current open merge requests and make them easily
1717 accessible. We didn't found such a tool and so we decided to build one by our own ;-)
1818 </ Text >
1919
20+ < Text mt = { 3 } fontWeight = 'bold' >
21+ Thanks
22+ </ Text >
23+ < Text fontSize = '14px' >
24+ We want to thank our employers (
25+ < a href = '#' onClick = { openUrl ( 'https://codecentric.de' ) } >
26+ codecentric
27+ </ a > { ' ' }
28+ and{ ' ' }
29+ < a href = '#' onClick = { openUrl ( 'https://uxi.de' ) } >
30+ UX& I
31+ </ a >
32+ ) to make it possible to develop this app in our +1 time.
33+ </ Text >
34+
2035 < Text mt = { 3 } fontWeight = 'bold' >
2136 Issues / Feedback
2237 </ Text >
23- < Text >
38+ < Text fontSize = '14px' >
2439 You found an issue or missed some feature? We are very keen about your feedback and appreciate any help. Please{ ' ' }
25- < a href = '#' onClick = { createIssue } >
40+ < a href = '#' onClick = { openUrl ( 'https://github.com/codecentric/merge-request-notifier/issues/new' ) } >
2641 create an issue
2742 </ a > { ' ' }
2843 on GitHub.
You can’t perform that action at this time.
0 commit comments