mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
feat: shows req when is active
This commit is contained in:
@@ -94,7 +94,15 @@ export const ShowRequests = () => {
|
|||||||
</div>
|
</div>
|
||||||
</CardHeader>
|
</CardHeader>
|
||||||
<CardContent>
|
<CardContent>
|
||||||
<RequestDistributionChart />
|
{
|
||||||
|
isActive ? (
|
||||||
|
<RequestDistributionChart />
|
||||||
|
) : (
|
||||||
|
<div className="flex items-center justify-center">
|
||||||
|
<span className="text-muted-foreground py-6">You need to activate requests</span>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
</CardContent>
|
</CardContent>
|
||||||
</Card>
|
</Card>
|
||||||
<RequestsTable />
|
<RequestsTable />
|
||||||
|
|||||||
Reference in New Issue
Block a user