fix: splits monitor widget types to complete and active

This commit is contained in:
2025-06-01 14:32:15 -05:00
parent b17313c8fb
commit 08d28d9a4f
4 changed files with 45 additions and 10 deletions

View File

@@ -5,8 +5,14 @@
{% block body %}
<div class="p-4">
<twig:Card title="Monitors">
<twig:MonitorList :isWidget="false" :perPage="10"></twig:MonitorList>
<twig:Card title="Active Monitors">
<twig:MonitorList :type="'active'" :isWidget="false" :perPage="10"></twig:MonitorList>
</twig:Card>
</div>
<div class="p-4">
<twig:Card title="Complete Monitors">
<twig:MonitorList :type="'complete'" :isWidget="false" :perPage="10"></twig:MonitorList>
</twig:Card>
</div>
{% endblock %}