Tasks und Vertragstyp fix #17
All checks were successful
Build and Push Docker Images / build-backend (push) Successful in 30s
Build and Push Docker Images / build-frontend (push) Successful in 1m8s

This commit is contained in:
2026-02-15 22:02:16 +01:00
parent 087ba1126e
commit 3f8ce5daf7
23 changed files with 1037 additions and 24 deletions

View File

@@ -20,7 +20,7 @@ const links = computed(() => {
} else if (pin.type === "standardEntity") {
return {
label: pin.label,
to: `/standardEntity/${pin.datatype}/show/${pin.id}`,
to: pin.datatype === "tasks" ? `/tasks/show/${pin.id}` : `/standardEntity/${pin.datatype}/show/${pin.id}`,
icon: pin.icon,
pinned: true
}
@@ -47,7 +47,7 @@ const links = computed(() => {
children: [
...has("tasks") ? [{
label: "Aufgaben",
to: "/standardEntity/tasks",
to: "/tasks",
icon: "i-heroicons-rectangle-stack"
}] : [],
...true ? [{
@@ -278,6 +278,10 @@ const links = computed(() => {
label: "Projekttypen",
to: "/projecttypes",
icon: "i-heroicons-clipboard-document-list",
}, {
label: "Vertragstypen",
to: "/standardEntity/contracttypes",
icon: "i-heroicons-document-duplicate",
}, {
label: "Export",
to: "/export",
@@ -365,4 +369,4 @@ const buttonItems = computed(() =>
</UAccordion>
<Calculator v-if="showCalculator" v-model="showCalculator"/>
</template>
</template>