From a11d234238f01f83cd081dbc6370294a219ff7c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Agust=C3=ADn=20Busso?= <90727999+agustinbusso@users.noreply.github.com> Date: Tue, 26 Sep 2023 15:08:44 -0300 Subject: [PATCH] UI Changes --- src/components/vue-form-builder.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/components/vue-form-builder.vue b/src/components/vue-form-builder.vue index 9b9625624..6ba5f0c38 100644 --- a/src/components/vue-form-builder.vue +++ b/src/components/vue-form-builder.vue @@ -127,9 +127,9 @@ class="d-flex justify-content-center align-items-center drag-placeholder text-center position-absolute rounded mt-4 flex-column" > -
- {{ $t("To start building a Screen, drag and drop the Controls of the left panel here.") }} + {{ $t("To begin creating a screen, drag and drop items from the Controls Menu on the left.") }}
@@ -1153,6 +1153,8 @@ export default { }); const clone = this.cloneControl(aiControl); clone.config.aiConfig.autofocus = true; + clone.config.aiConfig.screenTitle = this.screen.title; + clone.config.aiConfig.screenDescription = this.screen.description; this.config[this.currentPage].items.push(clone); this.updateState();