Update shield.html

This commit is contained in:
Lizandro Guarnizo
2026-05-15 23:45:44 -05:00
parent b631164091
commit 85595e639e
+3 -3
View File
@@ -121,8 +121,8 @@
<div class="flex items-center gap-2 flex-wrap">
<span class="font-bold text-slate-800" x-text="r.domain"></span>
<span class="px-2 py-0.5 rounded-full text-xs font-medium"
:class="r.request_type==='whitelist'?'bg-emerald-100 text-emerald-700':'bg-blue-100 text-blue-700'"
x-text="r.request_type==='whitelist'?'Lista blanca':'Revisión'"></span>
:class="r.request_type==='whitelist'?'bg-emerald-100 text-emerald-700':r.request_type==='blacklist'?'bg-red-100 text-red-700':'bg-blue-100 text-blue-700'"
x-text="r.request_type==='whitelist'?'Lista blanca':r.request_type==='blacklist'?'⬛ Lista negra':'Revisión'"></span>
<span class="px-2 py-0.5 rounded-full text-xs font-medium"
:class="r.status==='pending'?'bg-amber-100 text-amber-700':r.status==='approved'?'bg-emerald-100 text-emerald-700':'bg-red-100 text-red-700'"
x-text="r.status"></span>
@@ -446,7 +446,7 @@ function shield() {
topEndpoint: {},
// Solicitudes
reviewRequests: [],
reqStatus: 'pending',
reqStatus: 'all',
// Whitelist / Blacklist
whitelist: [],
blacklist: [],