Small fixes

This commit is contained in:
Daniel Egger 2022-07-05 07:40:26 +02:00
parent 1699852eda
commit 2daf659d71
4 changed files with 5 additions and 4 deletions

View File

@ -43,7 +43,7 @@ export default {
},
width: {
default: 1440,
default: 1640,
type: Number,
},
height: {

View File

@ -29,6 +29,7 @@ export const useCircleStore = defineStore({
},
actions: {
async loadCircle(slug: string) {
this.circle = undefined;
try {
// const circleData = await itGet(`/learnpath/api/circle/${slug}/`);
// this.circle = Circle.fromJson(circleData);

View File

@ -30,8 +30,8 @@ onMounted(async () => {
<div class="learningpath flex flex-col">
<div class="flex flex-col h-max">
<div class="bg-white h-80 pt-8">
<LearningPathDiagram></LearningPathDiagram>
<div class="bg-white py-8">
<LearningPathDiagram class="max-w-[1680px] w-full"></LearningPathDiagram>
</div>
<h1 class="m-12">{{ learningPathStore.learningPath.title }}</h1>

View File

@ -390,7 +390,7 @@ Neukundinnen und -kunden.""",
circle_analyse = create_circle('Betreuen', lp)
create_circle_children(circle_analyse, 'Betreuen')
TopicFactory(title="Prüfungs- vorbereitung", is_visible=False, parent=lp)
TopicFactory(title="Prüfung", is_visible=True, parent=lp)
circle_analyse = create_circle('Prüfungs- vorbereitung', lp)
create_circle_children(circle_analyse, 'Prüfungs- vorbereitung')