mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-07-30 01:32:00 +08:00
chore: version is added in the src of Logo (#1039)
This commit is contained in:
parent
eae97d6ffc
commit
bdf9333dcf
@ -38,7 +38,7 @@ import {
|
||||
} from './styles';
|
||||
|
||||
function HeaderContainer({ toggleDarkMode }: Props): JSX.Element {
|
||||
const { isDarkMode, user } = useSelector<AppState, AppReducer>(
|
||||
const { isDarkMode, user, currentVersion } = useSelector<AppState, AppReducer>(
|
||||
(state) => state.app,
|
||||
);
|
||||
const [isUserDropDownOpen, setIsUserDropDownOpen] = useState<boolean>();
|
||||
@ -128,8 +128,10 @@ function HeaderContainer({ toggleDarkMode }: Props): JSX.Element {
|
||||
style={{ display: 'flex', alignItems: 'center', gap: '8px' }}
|
||||
to={ROUTES.APPLICATION}
|
||||
>
|
||||
<img src="/signoz.svg" alt="SigNoz" />
|
||||
<Typography.Title style={{ margin: 0, color: '#DBDBDB' }} level={4}>
|
||||
|
||||
<img src={`/signoz.svg?currentVersion=${currentVersion}`} alt="SigNoz" />
|
||||
<Typography.Title style={{ margin: 0 , color: '#DBDBDB'}} level={4}>
|
||||
|
||||
SigNoz
|
||||
</Typography.Title>
|
||||
</NavLink>
|
||||
|
Loading…
x
Reference in New Issue
Block a user