Keep server address at the top
This commit is contained in:
parent
00338e431b
commit
47d6235ea0
1 changed files with 3 additions and 3 deletions
|
@ -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>
|
||||
);
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue