diff --git a/client/src/components/molecules/VersionNumbers/VersionStatus.tsx b/client/src/components/molecules/VersionNumbers/VersionStatus.tsx index 8740a06..43b561f 100644 --- a/client/src/components/molecules/VersionNumbers/VersionStatus.tsx +++ b/client/src/components/molecules/VersionNumbers/VersionStatus.tsx @@ -1,15 +1,25 @@ import React from 'react' import styles from './VersionStatus.module.scss' +const statusInfo: { [key: string]: string } = { + ok: 'Shows if connection to all component endpoints can be established.', + network: 'Shows if all components are on the same network.', + contracts: 'Shows if contracts loaded by components are the same version.' +} + const VersionStatus = ({ status }: { - status: { ok: boolean; contracts: boolean; network: boolean } + status: { ok: boolean; network: boolean; contracts: boolean } }) => { return (
{Object.entries(status).map(([key, value]) => ( -
+