Skip to content

Commit 47d6235

Browse files
committed
Keep server address at the top
1 parent 00338e4 commit 47d6235

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

resources/scripts/components/server/console/ServerDetailsBlock.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,9 @@ const ServerDetailsBlock = ({ className }: { className?: string }) => {
7272

7373
return (
7474
<div className={classNames('grid grid-cols-6 gap-2 md:gap-4', className)}>
75+
<StatBlock icon={faWifi} title={'Address'}>
76+
{allocation}
77+
</StatBlock>
7578
<StatBlock
7679
icon={faClock}
7780
title={'Uptime'}
@@ -146,9 +149,6 @@ const ServerDetailsBlock = ({ className }: { className?: string }) => {
146149
bytesToHuman(stats.rx)
147150
}
148151
</StatBlock>
149-
<StatBlock icon={faWifi} title={'Address'}>
150-
{allocation}
151-
</StatBlock>
152152
</div>
153153
);
154154
};

0 commit comments

Comments
 (0)