This commit is contained in:
Lizandro Guarnizo
2026-05-06 18:16:55 -05:00
parent 048ebf5d70
commit 88153efd17
2 changed files with 12 additions and 1 deletions
+6 -1
View File
@@ -243,7 +243,12 @@ function paginasApp() {
orden: 0, publicado: false, rol_ids: []
},
init() { this.load(1); },
init() {
const params = new URLSearchParams(window.location.search);
const sid = parseInt(params.get('saas_id') || '0', 10);
if (sid) this.filterSaas = sid;
this.load(1);
},
load(p = 1) {
this.page = p; this.loading = true;