From 20fd29e50c68605a79a7b8e862b8ac88b28f9e91 Mon Sep 17 00:00:00 2001 From: Dmitry Kuzin Date: Wed, 11 Sep 2024 21:30:58 +0400 Subject: [PATCH] Fix missing component --- packages/survey-creator-vue/src/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/survey-creator-vue/src/index.ts b/packages/survey-creator-vue/src/index.ts index f9cdcbd0f..70de64305 100644 --- a/packages/survey-creator-vue/src/index.ts +++ b/packages/survey-creator-vue/src/index.ts @@ -16,6 +16,7 @@ import Placeholder from "./tab-control/Placeholder.vue"; import PlaceholderHeader from "./tab-control/PlaceholderHeader.vue"; import PropertyGridHeader from "./tab-control/PropertyGridHeader.vue"; +import QuestionError from "./components/QuestionError.vue"; import ActionButton from "./components/ActionButton.vue"; import Switcher from "./components/Switcher.vue"; import Simulator from "./tabs/preview/Simulator.vue"; @@ -118,6 +119,7 @@ function registerComponents( registerComponent("svc-switcher", Switcher); registerComponent("svc-action-button", ActionButton); + registerComponent("svc-question-error", QuestionError); registerComponent("survey-embeddedsurvey", EmbeddedSurvey); registerComponent("sv-logic-operator", LogicOperator);