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
1 changed files with 3 additions and 3 deletions

View File

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