diff --git a/apps/web-coreum/package.json b/apps/web-coreum/package.json index ec39efee09..d1f565d114 100644 --- a/apps/web-coreum/package.json +++ b/apps/web-coreum/package.json @@ -1,6 +1,6 @@ { "name": "web-coreum", - "version": "2.19.3-77", + "version": "2.19.3-78", "license": "Apache-2.0", "private": true, "scripts": { diff --git a/apps/web-coreum/src/chain.json b/apps/web-coreum/src/chain.json index 40b39ad830..c744156bb3 100644 --- a/apps/web-coreum/src/chain.json +++ b/apps/web-coreum/src/chain.json @@ -52,7 +52,8 @@ "table_headers": "#6C6F78", "data_blocks": "#25D695", "staking_tab": "#5E6773", - "active_tab": "#FFFFFF" + "active_tab": "#FFFFFF", + "settings_label_version": "#5E6773" }, "primaryData": { "one": "#F87255", @@ -153,7 +154,8 @@ "highlight": "#F1C34E", "table_headers": "#A5A8B2", "staking_tab": "#A5A8B2", - "active_tab": "#1B1D23" + "active_tab": "#1B1D23", + "settings_label_version": "#C3C3C3" }, "primaryData": { "one": "#F87255", diff --git a/packages/ui/createPalette.d.ts b/packages/ui/createPalette.d.ts index 4489b5f8f7..8689a8a35f 100644 --- a/packages/ui/createPalette.d.ts +++ b/packages/ui/createPalette.d.ts @@ -46,6 +46,7 @@ declare module '@mui/material/styles/createPalette' { data_blocks: string; staking_tab: string; active_tab: string; + settings_label_version: string; }; primaryData: { one: string; diff --git a/packages/ui/src/components/nav/components/desktop/components/action_bar/components/settings_list/index.tsx b/packages/ui/src/components/nav/components/desktop/components/action_bar/components/settings_list/index.tsx index f8fcacc834..0fa1174649 100644 --- a/packages/ui/src/components/nav/components/desktop/components/action_bar/components/settings_list/index.tsx +++ b/packages/ui/src/components/nav/components/desktop/components/action_bar/components/settings_list/index.tsx @@ -29,6 +29,7 @@ const Settings: FC = (props) => { txListFormat, handleClose, } = useSettingList(); + const currentVersion = process.env.NEXT_PUBLIC_VERSION; return (
@@ -134,6 +135,7 @@ const Settings: FC = (props) => { ))}
+ Version: {currentVersion}
diff --git a/packages/ui/src/components/nav/components/desktop/components/action_bar/components/settings_list/styles.ts b/packages/ui/src/components/nav/components/desktop/components/action_bar/components/settings_list/styles.ts index 667d3c2eef..ef84c19c5c 100644 --- a/packages/ui/src/components/nav/components/desktop/components/action_bar/components/settings_list/styles.ts +++ b/packages/ui/src/components/nav/components/desktop/components/action_bar/components/settings_list/styles.ts @@ -95,11 +95,13 @@ const useStyles = makeStyles()((theme) => ({ }, }, version: { - color: theme.palette.custom.fonts.fontFour, + color: theme.palette.custom.fonts.settings_label_version, display: 'flex', alignItems: 'start', justifyContent: 'center', - // marginLeft: theme.spacing(1), + fontSize: theme.spacing(1.5), + marginTop: theme.spacing(1), + marginBottom: theme.spacing(0.5), }, })); diff --git a/turbo.json b/turbo.json index 9626e014bc..2cc7b6dd4c 100644 --- a/turbo.json +++ b/turbo.json @@ -10,7 +10,8 @@ "NEXT_PUBLIC_GRAPHQL_WS", "NEXT_PUBLIC_MATOMO_SITE_ID", "NEXT_PUBLIC_MATOMO_URL", - "NEXT_PUBLIC_RPC_WEBSOCKET" + "NEXT_PUBLIC_RPC_WEBSOCKET", + "NEXT_PUBLIC_VERSION" ] }, "clean": {