1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-11-22 09:02:28 +01:00

Keep server address at the top

This commit is contained in:
DaneEveritt 2022-06-25 21:31:10 -04:00
parent 00338e431b
commit 47d6235ea0
No known key found for this signature in database
GPG Key ID: EEA66103B3D71F53

View File

@ -72,6 +72,9 @@ const ServerDetailsBlock = ({ className }: { className?: string }) => {
return (
<div className={classNames('grid grid-cols-6 gap-2 md:gap-4', className)}>
<StatBlock icon={faWifi} title={'Address'}>
{allocation}
</StatBlock>
<StatBlock
icon={faClock}
title={'Uptime'}
@ -146,9 +149,6 @@ const ServerDetailsBlock = ({ className }: { className?: string }) => {
bytesToHuman(stats.rx)
}
</StatBlock>
<StatBlock icon={faWifi} title={'Address'}>
{allocation}
</StatBlock>
</div>
);
};