Fix: Usar propiedad slot en tabs de debug para mostrar contenido correctamente
All checks were successful
build-and-deploy / build-and-deploy (push) Successful in 1m2s

This commit is contained in:
2025-12-02 20:53:58 -06:00
parent 9f2f3ac510
commit b92ccf88b7

View File

@@ -121,12 +121,12 @@ watch(instanceOptions, (opts) => {
}, { immediate: true })
const tabs = [
{ label: 'Blocklist', value: 'blocklist', icon: 'i-lucide-ban' },
{ label: 'Privacy', value: 'privacy', icon: 'i-lucide-shield' },
{ label: 'Groups', value: 'groups', icon: 'i-lucide-users' },
{ label: 'History', value: 'history', icon: 'i-lucide-history' },
{ label: 'Chat', value: 'chat', icon: 'i-lucide-message-circle' },
{ label: 'Media', value: 'media', icon: 'i-lucide-image' },
{ label: 'Blocklist', slot: 'blocklist', icon: 'i-lucide-ban' },
{ label: 'Privacy', slot: 'privacy', icon: 'i-lucide-shield' },
{ label: 'Groups', slot: 'groups', icon: 'i-lucide-users' },
{ label: 'History', slot: 'history', icon: 'i-lucide-history' },
{ label: 'Chat', slot: 'chat', icon: 'i-lucide-message-circle' },
{ label: 'Media', slot: 'media', icon: 'i-lucide-image' },
]
const handleResponse = (response: any) => {