Skip to content

Commit

Permalink
Merge branch 'master' into iframe-loader-with-environment
Browse files Browse the repository at this point in the history
  • Loading branch information
fiskus committed Mar 20, 2023
2 parents a17b1e8 + 8f51583 commit c16328f
Showing 1 changed file with 19 additions and 8 deletions.
27 changes: 19 additions & 8 deletions catalog/app/containers/Admin/Status/Status.tsx
@@ -1,8 +1,10 @@
import * as React from 'react'
import * as M from '@material-ui/core'

import { docs } from 'constants/urls'
import * as Model from 'model'
import MetaTitle from 'utils/MetaTitle'
import StyledLink from 'utils/StyledLink'
import useQuery from 'utils/useQuery'

import Canaries from './Canaries'
Expand Down Expand Up @@ -46,14 +48,23 @@ export default function Status() {
/>
</>
) : (
<M.Box py={2}>
<M.Typography variant="h4" align="center" gutterBottom>
No Data
</M.Typography>
<M.Typography align="center">
Status monitoring is not enabled for this stack
</M.Typography>
</M.Box>
<M.Container maxWidth="sm">
<M.Box py={2}>
<M.Typography variant="h4" align="center" gutterBottom>
No Data
</M.Typography>
<M.Typography align="center" gutterBottom>
Status monitoring is an add-on feature that automates quality testing for
GxP and other compliance regimes.
</M.Typography>
<M.Typography align="center">
<StyledLink href={`${docs}/advanced/good-practice`} target="_blank">
Learn more
</StyledLink>{' '}
or <StyledLink href="mailto:sales@quiltdata.io">contact sales</StyledLink>.
</M.Typography>
</M.Box>
</M.Container>
)}
</M.Box>
)
Expand Down

0 comments on commit c16328f

Please sign in to comment.