mejora filtro por salas
Some checks failed
build-and-deploy / build (push) Failing after 23s
build-and-deploy / deploy (push) Has been skipped

This commit is contained in:
2025-08-28 04:05:59 -06:00
parent 7de7263c41
commit 4f4dd2d2f3
2 changed files with 136 additions and 35 deletions

View File

@@ -97,7 +97,7 @@ export function useEventFilters() {
const parts = [];
if (roundFilter.value.length) parts.push(`Round ${roundFilter.value.join(',')}`);
if (gameFilter.value.length) parts.push(`Game ${gameFilter.value.join(',')}`);
if (roomFilter.value.length) parts.push(`Rooms ${roomFilter.value.map(r => r.slice(0,8)).join(',')}`);
if (roomFilter.value.length) parts.push(`Rooms ${roomFilter.value.length}`);
return parts.length > 0 ? parts.join(' + ') : 'Sin filtros';
});