Small fixes
This commit is contained in:
parent
1699852eda
commit
2daf659d71
|
|
@ -43,7 +43,7 @@ export default {
|
||||||
},
|
},
|
||||||
|
|
||||||
width: {
|
width: {
|
||||||
default: 1440,
|
default: 1640,
|
||||||
type: Number,
|
type: Number,
|
||||||
},
|
},
|
||||||
height: {
|
height: {
|
||||||
|
|
|
||||||
|
|
@ -29,6 +29,7 @@ export const useCircleStore = defineStore({
|
||||||
},
|
},
|
||||||
actions: {
|
actions: {
|
||||||
async loadCircle(slug: string) {
|
async loadCircle(slug: string) {
|
||||||
|
this.circle = undefined;
|
||||||
try {
|
try {
|
||||||
// const circleData = await itGet(`/learnpath/api/circle/${slug}/`);
|
// const circleData = await itGet(`/learnpath/api/circle/${slug}/`);
|
||||||
// this.circle = Circle.fromJson(circleData);
|
// this.circle = Circle.fromJson(circleData);
|
||||||
|
|
|
||||||
|
|
@ -30,8 +30,8 @@ onMounted(async () => {
|
||||||
|
|
||||||
<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-white h-80 pt-8">
|
<div class="bg-white py-8">
|
||||||
<LearningPathDiagram></LearningPathDiagram>
|
<LearningPathDiagram class="max-w-[1680px] w-full"></LearningPathDiagram>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h1 class="m-12">{{ learningPathStore.learningPath.title }}</h1>
|
<h1 class="m-12">{{ learningPathStore.learningPath.title }}</h1>
|
||||||
|
|
|
||||||
|
|
@ -390,7 +390,7 @@ Neukundinnen und -kunden.""",
|
||||||
circle_analyse = create_circle('Betreuen', lp)
|
circle_analyse = create_circle('Betreuen', lp)
|
||||||
create_circle_children(circle_analyse, 'Betreuen')
|
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)
|
circle_analyse = create_circle('Prüfungs- vorbereitung', lp)
|
||||||
create_circle_children(circle_analyse, 'Prüfungs- vorbereitung')
|
create_circle_children(circle_analyse, 'Prüfungs- vorbereitung')
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue