Remove console logs

This commit is contained in:
Lorenz Padberg 2022-08-11 15:00:03 +02:00
parent 9566c69450
commit bc971065e3
1 changed files with 5 additions and 20 deletions

View File

@ -15,50 +15,35 @@ log.debug('LearningPathView created');
const props = defineProps<{ const props = defineProps<{
learningPathSlug: string, learningPathSlug: string,
show: boolean show: boolean
}>() }>()
const learningPathStore = useLearningPathStore(); const learningPathStore = useLearningPathStore();
const userStore = useUserStore(); const userStore = useUserStore();
const emits = defineEmits(['closemodal']) const emits = defineEmits(['closemodal'])
console.log("======================")
console.log(learningPathStore.learningPath)
console.log("======================")
</script> </script>
<template> <template>
<ItFullScreenModal <ItFullScreenModal
:show="show" :show="show"
@closemodal="$emit('closemodal')"> @closemodal="$emit('closemodal')">
<div class="bg-white" v-if="learningPathStore.learningPath"> <div class="bg-white" v-if="learningPathStore.learningPath">
<h1 class="m-12">{{ learningPathStore.learningPath.title }}</h1> <h1 class="m-12">{{ learningPathStore.learningPath.title }}</h1>
<div class="learningpath flex flex-col"> <div class="learningpath flex flex-col">
<div class="flex flex-col h-max"> <div class="flex flex-col h-max">
<div class="bg-red py-8"> <div class="bg-red py-8">
<LearningPathDiagram class="max-w-[1680px] w-full"
<LearningPathDiagram class="max-w-[1680px] w-full" height="2000" identifier="verticalVisualization" v-bind:vertical="true"></LearningPathDiagram>--> height="2000"
ksdfklm klsmfskdflsif msdlfkfjie identifier="verticalVisualization"
v-bind:vertical="true"></LearningPathDiagram>
</div> </div>
</div> </div>
</div> </div>
</div> </div>
</ItFullScreenModal> </ItFullScreenModal>
</template> </template>
<style scoped> <style scoped>
</style> </style>