mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-08-17 16:50:58 +00:00
fix(ui): correct inline style syntax between clients count and active clients count on inbounds page (#5114)
* fix(ui): correct inline style syntax in client counts column on inbounds page * fix(ui): correct inline style syntax between clients count and active clients count on inbounds page
This commit is contained in:
@@ -159,7 +159,7 @@ export function useInboundColumns({
|
|||||||
if (!cc) return null;
|
if (!cc) return null;
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Tag className="client-count-tag" style={{ margin: 0, padding: '0 2px' }}>
|
<Tag className="client-count-tag" style={{ margin: 0, marginRight: 4, padding: '0 2px' }}>
|
||||||
<TeamOutlined /> {cc.clients}
|
<TeamOutlined /> {cc.clients}
|
||||||
</Tag>
|
</Tag>
|
||||||
{cc.active.length > 0 && (
|
{cc.active.length > 0 && (
|
||||||
|
|||||||
Reference in New Issue
Block a user