diff options
Diffstat (limited to 'server/sonar-web/src/main/js/apps/system/components/App.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/apps/system/components/App.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/system/components/App.tsx b/server/sonar-web/src/main/js/apps/system/components/App.tsx index 7e5cdc02608..45532818e90 100644 --- a/server/sonar-web/src/main/js/apps/system/components/App.tsx +++ b/server/sonar-web/src/main/js/apps/system/components/App.tsx @@ -24,6 +24,7 @@ import { getSystemInfo } from '../../../api/system'; import Suggestions from '../../../app/components/embed-docs-modal/Suggestions'; import UpdateNotification from '../../../app/components/update-notification/UpdateNotification'; import { translate } from '../../../helpers/l10n'; +import { SysInfoCluster, SysInfoStandalone } from '../../../types/types'; import '../styles.css'; import { getClusterVersion, @@ -43,7 +44,7 @@ type Props = WithRouterProps; interface State { loading: boolean; - sysInfoData?: T.SysInfoCluster | T.SysInfoStandalone; + sysInfoData?: SysInfoCluster | SysInfoStandalone; } export class App extends React.PureComponent<Props, State> { |