diff --git a/src/pages/IndexPage.vue b/src/pages/IndexPage.vue index f72aa1d..730b741 100644 --- a/src/pages/IndexPage.vue +++ b/src/pages/IndexPage.vue @@ -172,11 +172,13 @@ const btnSaveDisable = () => { }; const refrescarImagen = () => { + console.log(listaStore.pb.authStore.model); if (listaStore.pb.authStore.model.avatar.length > 0) { - fuenteImagen.value = listaStore.pb.getFileUrl( - listaStore.pb.authStore.model, - listaStore.pb.authStore.model.avatar - ); + fuenteImagen.value = + listaStore.pb.getFileUrl( + listaStore.pb.authStore.model, + listaStore.pb.authStore.model.avatar + ) + "?thumb=100x100"; } else { fuenteImagen.value = `https://cdn.quasar.dev/img/avatar.png`; }