diff --git a/frontend/e2e/sectionHierarchy.ts b/frontend/e2e/sectionHierarchy.ts index fa815d3b7..b4ca252b7 100644 --- a/frontend/e2e/sectionHierarchy.ts +++ b/frontend/e2e/sectionHierarchy.ts @@ -20,7 +20,10 @@ import SectionHeirarchy from "@/pages/node/SectionHierarchy.vue"; // */ const AppModalStub = defineComponent({ name: "AppModal", - props: { modelValue: { type: Boolean, default: false }, label: String }, + props: { + modelValue: { type: Boolean, default: false }, + label: { type: String, default: "" }, + }, emits: ["update:modelValue"], template: `
`, }); diff --git a/frontend/src/components/AppAssociationTabs.vue b/frontend/src/components/AppAssociationTabs.vue index 592fbcea8..bbf66e731 100644 --- a/frontend/src/components/AppAssociationTabs.vue +++ b/frontend/src/components/AppAssociationTabs.vue @@ -28,7 +28,7 @@