Small fixes
This commit is contained in:
parent
1699852eda
commit
2daf659d71
|
|
@ -43,7 +43,7 @@ export default {
|
|||
},
|
||||
|
||||
width: {
|
||||
default: 1440,
|
||||
default: 1640,
|
||||
type: Number,
|
||||
},
|
||||
height: {
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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')
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue