Skip to content

Commit

Permalink
🔥 limpiar para que despliegue
Browse files Browse the repository at this point in the history
  • Loading branch information
anattolia committed Dec 5, 2024
1 parent d291f76 commit 3959085
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions aplicaciones/www/src/componentes/FichaLugar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,10 @@ import { base } from '@/utilidades/ayudas';
defineProps<{ id: string; cerrar: () => void }>();
//const nombrePodcast: Ref<string> = ref('');
const nombrePerfil: Ref<string> = ref('');
//const descripcionPodcast: Ref<string> = ref('');
const descripcionPerfil: Ref<string> = ref('');
const descripcionTextoPajaro: Ref<string> = ref('');
const ruta: Ref<string> = ref('');
//const rutaPodcast: Ref<string> = ref('');
//const hayPodcast: Ref<boolean> = ref(false);
const hayPerfil: Ref<boolean> = ref(false);
const hayTextoPajaro: Ref<boolean> = ref(false);
const cerebro = usarCerebro();
Expand Down Expand Up @@ -87,7 +79,7 @@ onMounted(() => {
/* No elimino esto aún hasta que no decidamos si en estas fichas habrá podcasts*/
//const podcast = podcasts.find((podcast) => podcast.id === cerebro.lugarElegido);
const perfil = perfiles.find((perfil) => perfil.id === cerebro.lugarElegido);
const textoPajaro = textosPajaros.find((texto) => texto.id === cerebro.lugarElegido);
//const textoPajaro = textosPajaros.find((texto) => texto.id === cerebro.lugarElegido);
/* if (podcast) {
if (podcast.nombre) nombrePodcast.value = podcast.nombre;
Expand Down

0 comments on commit 3959085

Please sign in to comment.