diff --git a/src/components/TopBar/AboutDialog.js b/src/components/TopBar/AboutDialog.js index f0199c27..76550ff1 100644 --- a/src/components/TopBar/AboutDialog.js +++ b/src/components/TopBar/AboutDialog.js @@ -22,6 +22,7 @@ import { Fade, Grid, Stack, + Tooltip, Typography, useMediaQuery, useTheme, @@ -377,26 +378,44 @@ const Module = ({ type, name, version, license }) => { }, }} > - - {ModuleTypesIcons[type] || ModuleTypesIcons['other']} - - {name || ''} - - theme.palette.text.secondary} - display="inline" - marginLeft={1} - noWrap + ') + ' ' + (version || '')}> + - {version || null} - - + + {ModuleTypesIcons[type] || ModuleTypesIcons['other']} + + + {name || ''} + + + theme.palette.text.secondary} + display="inline" + noWrap + > + {version || null} + + + + ); };