We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00338e4 commit 47d6235Copy full SHA for 47d6235
resources/scripts/components/server/console/ServerDetailsBlock.tsx
@@ -72,6 +72,9 @@ const ServerDetailsBlock = ({ className }: { className?: string }) => {
72
73
return (
74
<div className={classNames('grid grid-cols-6 gap-2 md:gap-4', className)}>
75
+ <StatBlock icon={faWifi} title={'Address'}>
76
+ {allocation}
77
+ </StatBlock>
78
<StatBlock
79
icon={faClock}
80
title={'Uptime'}
@@ -146,9 +149,6 @@ const ServerDetailsBlock = ({ className }: { className?: string }) => {
146
149
bytesToHuman(stats.rx)
147
150
}
148
151
</StatBlock>
- <StatBlock icon={faWifi} title={'Address'}>
- {allocation}
- </StatBlock>
152
</div>
153
);
154
};
0 commit comments