Skip to content

Commit

Permalink
Merge pull request #1726 from garyadaptive/fix/openfin-build-version
Browse files Browse the repository at this point in the history
fix(client): expose build version in OpenFin service status
  • Loading branch information
garyadaptive authored Dec 11, 2020
2 parents 96b6fe7 + 8cfaf12 commit 9c5c8ce
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
ServiceList,
} from './styled'
import Service from './Service'
import FooterVersion from '../footer-version'
import { FooterVersion } from 'rt-components'
import { usePopUpMenu } from 'rt-util'

interface Props {
Expand Down
1 change: 1 addition & 0 deletions src/client/src/rt-components/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ export { Timer } from './timer'
export { RouteWrapper, RouteStyle } from './route-wrapper'
export { default as Popup } from './popup'
export { default as Tooltip } from './tooltip'
export { default as FooterVersion } from './footer-version'
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { useCallback, SyntheticEvent } from 'react'
import { Flex } from 'rt-components'
import { Flex, FooterVersion } from 'rt-components'
import { ConnectionInfo } from 'rt-system'
import { ServiceStatus } from 'rt-types'
import Service from './Service'
Expand Down Expand Up @@ -34,6 +34,7 @@ const StatusDisplay: React.FC<Props> = ({ connectionStatus: { url }, services })
<Service key={service.serviceType} service={service} />
))}
</ServiceList>
<FooterVersion />
</Flex>
</Background>
)
Expand Down

0 comments on commit 9c5c8ce

Please sign in to comment.