From f05d9df2ca533762bd6c2c95c17a984ef6d7f9c5 Mon Sep 17 00:00:00 2001 From: Olle Haerstedt Date: Mon, 13 Jan 2020 15:57:45 +0100 Subject: [PATCH] Dev: Change 'survey page' back to 'question group' again --- .../controllers/admin/checkintegrity.php | 2 +- .../controllers/admin/questiongroups.php | 18 +++++++-------- application/controllers/admin/surveyadmin.php | 6 ++--- application/core/LsDefaultDataSets.php | 22 +++++++++---------- application/core/Survey_Common_Action.php | 3 +-- application/helpers/admin/activate_helper.php | 2 +- application/helpers/frontend_helper.php | 2 +- .../helpers/update/updatedb_helper.php | 8 +++---- application/models/QuestionBaseDataSet.php | 2 +- application/models/QuestionGroup.php | 2 +- .../admin/assessments/assessments_edit.php | 2 +- .../views/admin/checkintegrity/check_view.php | 4 ++-- .../views/admin/super/_question_explorer.php | 14 ++++++------ application/views/admin/super/sidemenu.php | 4 ++-- application/views/admin/super/welcome.php | 4 ++-- .../survey/Question/importQuestion_view.php | 2 +- .../Question/massive_actions/_selector.php | 4 ++-- .../_set_question_group_position.php | 2 +- .../survey/Question/questionbar_view.php | 4 ++-- .../survey/QuestionGroups/addGroup_view.php | 4 ++-- .../QuestionGroups/importGroup_view.php | 6 ++--- .../survey/QuestionGroups/import_view.php | 10 ++++----- application/views/admin/survey/breadcrumb.php | 2 +- .../organizeGroupsAndQuestions_view.php | 2 +- .../survey/subview/_create_survey_text.php | 2 +- .../survey/subview/_survey_quickaction.php | 8 +++---- .../accordion/_accordion_container.php | 2 +- .../survey/surveybar_addgroupquestion.php | 2 +- .../views/admin/survey/surveybar_tools.php | 2 +- .../survey/topbar/question_group_topbar.php | 22 +++++++++---------- .../admin/survey/topbar/survey_topbar.php | 2 +- .../views/admin/surveymenu_entries/_form.php | 2 +- assets/packages/questiongroup/src/App.vue | 10 ++++----- .../textelements/src/TextElementsApp.vue | 2 +- 34 files changed, 92 insertions(+), 93 deletions(-) diff --git a/application/controllers/admin/checkintegrity.php b/application/controllers/admin/checkintegrity.php index 65d376601a7..9253d406814 100644 --- a/application/controllers/admin/checkintegrity.php +++ b/application/controllers/admin/checkintegrity.php @@ -188,7 +188,7 @@ private function _deleteGroups(array $groups, array $aData) if($deleted) { $count += $deleted; } else { - $aData['warnings'][] = sprintf(gT('Unable to delete survey page %s'), $gid); + $aData['warnings'][] = sprintf(gT('Unable to delete question group %s'), $gid); } } $aData['messages'][] = sprintf(gT('Deleting groups: %u groups deleted'), $count); diff --git a/application/controllers/admin/questiongroups.php b/application/controllers/admin/questiongroups.php index 3d203bf0c99..30a2ee96e03 100644 --- a/application/controllers/admin/questiongroups.php +++ b/application/controllers/admin/questiongroups.php @@ -195,10 +195,10 @@ public function insert($surveyid) $oGroupLS->language = $sLanguage; $oGroupLS->save(); } - App()->setFlashMessage(gT("New survey page was saved.")); + App()->setFlashMessage(gT("New question group was saved.")); App()->setFlashMessage( sprintf( - gT('You can now %sadd a question%s in this page.'), + gT('You can now %sadd a question%s in this group.'), '', @@ -248,7 +248,7 @@ public function delete($iSurveyId = null, $iGroupId = null, $asJson = false) } $oQuestionGroup = QuestionGroup::model()->find("gid = :gid", array(":gid"=>$iGroupId)); if (empty($oQuestionGroup)) { - throw new CHttpException(401, gT("Invalid survey page id")); + throw new CHttpException(401, gT("Invalid question group id")); } /* Test the surveyid from question, not from submitted value */ $iSurveyId = $oQuestionGroup->sid; @@ -270,7 +270,7 @@ public function delete($iSurveyId = null, $iGroupId = null, $asJson = false) [ 'success' => $success, 'deletedGroups' => $iGroupsDeleted, - 'message' => ($success ?gT('The survey page was deleted.') : gT('Page could not be deleted')), + 'message' => ($success ?gT('The question group was deleted.') : gT('Group could not be deleted')), 'redirect' => $this->getController()->createUrl( 'admin/survey/sa/listquestiongroups/', ['surveyid' => $iSurveyId] @@ -282,9 +282,9 @@ public function delete($iSurveyId = null, $iGroupId = null, $asJson = false) if ($iGroupsDeleted > 0) { QuestionGroup::model()->updateGroupOrder($iSurveyId); - App()->setFlashMessage(gT('The survey page was deleted.')); + App()->setFlashMessage(gT('The question group was deleted.')); } else { - App()->setFlashMessage(gT('Page could not be deleted'), 'error'); + App()->setFlashMessage(gT('Group could not be deleted'), 'error'); } LimeExpressionManager::UpgradeConditionsToRelevance($iSurveyId); @@ -364,14 +364,14 @@ public function view($surveyid, $gid, $landOnSideMenuTab = 'structure') ["surveyid" => $surveyid, 'gid' => $gid] ), 'i10N' => [ - 'Survey page' => gT('Survey page'), - 'Page overview' => gT('Page overview'), + 'Question group' => gT('Question group'), + 'Group overview' => gT('Group overview'), 'Question list' => gT('Question list'), 'Create new question group' => gT('Create new question group'), 'Question group overview' => gT('Question group overview'), 'Question group editor' => gT('Question group editor'), 'General Settings' => gT("General Settings"), - 'Page summary' => gT('Page summary'), + 'Group summary' => gT('Group summary'), 'Random Group' => gT('Random Group'), 'Title' => gT('Title'), 'Condition' => gT('Condition'), diff --git a/application/controllers/admin/surveyadmin.php b/application/controllers/admin/surveyadmin.php index 92ba66d94e8..5ce85eb7385 100644 --- a/application/controllers/admin/surveyadmin.php +++ b/application/controllers/admin/surveyadmin.php @@ -1396,7 +1396,7 @@ private function _reorderGroup($iSurveyID) } } LimeExpressionManager::SetDirtyFlag(); // so refreshes syntax highlighting - Yii::app()->session['flashmessage'] = gT("The new survey page/question order was successfully saved."); + Yii::app()->session['flashmessage'] = gT("The new question group/question order was successfully saved."); } /** @@ -1990,7 +1990,7 @@ public function insert($iSurveyID = null) $iNewGroupID = $this->_createSampleGroup($iNewSurveyid); $iNewQuestionID = $this->_createSampleQuestion($iNewSurveyid, $iNewGroupID); - Yii::app()->setFlashMessage($warning.gT("Your new survey was created. We also created a first survey page and an example question for you."), 'info'); + Yii::app()->setFlashMessage($warning.gT("Your new survey was created. We also created a first question group and an example question for you."), 'info'); $landOnSideMenuTab = 'structure'; $redirecturl = $this->getSurveyAndSidemenueDirectionURL($iNewSurveyid, $iNewGroupID, $iNewQuestionID, $landOnSideMenuTab); } else { @@ -2300,7 +2300,7 @@ private function _createSampleGroup($iSurveyID) $oGroup->save(); $oGroupL10ns = new QuestionGroupL10n(); $oGroupL10ns->gid = $oGroup->gid; - $oGroupL10ns->group_name = gt('My first survey page', 'html', $sLanguage); + $oGroupL10ns->group_name = gt('My first question group', 'html', $sLanguage); $oGroupL10ns->language = $sLanguage; $oGroupL10ns->save(); LimeExpressionManager::SetEMLanguage($sLanguage); diff --git a/application/core/LsDefaultDataSets.php b/application/core/LsDefaultDataSets.php index 74243c7518e..c1aca5e4a6a 100644 --- a/application/core/LsDefaultDataSets.php +++ b/application/core/LsDefaultDataSets.php @@ -22,7 +22,7 @@ public static function getSurveyMenuEntryData() [1,null,8,'notification', gT('Notification and data management settings','unescaped'),gT('Notifications & data','unescaped'),gT('Edit settings for notification and data management','unescaped'),'feed','fontawesome','','','updatesurveylocalesettings','editLocalSettings_main_view','/admin/survey/subview/accordion/_notification_panel','','surveylocale','read',null,'_tabNotificationDataManagement','en-GB',1, date('Y-m-d H:i:s'),0,date('Y-m-d H:i:s'),0,0], [1,null,9,'publication', gT('Publication & access control settings','unescaped'),gT('Publication & access','unescaped'),gT('Edit settings for publication and access control','unescaped'),'key','fontawesome','','','updatesurveylocalesettings','editLocalSettings_main_view','/admin/survey/subview/accordion/_publication_panel','','surveylocale','read',null,'_tabPublicationAccess','en-GB',1, date('Y-m-d H:i:s'),0,date('Y-m-d H:i:s'),0,0], [2,null,1,'listQuestions',gT('Question list','unescaped'),gT('Question list','unescaped'),gT('List questions','unescaped'),'list','fontawesome','','admin/survey/sa/listquestions','','','','','surveycontent','read','{"render": { "link": {"data": {"surveyid": ["survey","sid"]}}}}','','en-GB',1, date('Y-m-d H:i:s'),0,date('Y-m-d H:i:s'),0,1], - [2,null,2,'listQuestionGroups',gT('Page list','unescaped'),gT('Page list','unescaped'),gT('List survey pages','unescaped'),'th-list','fontawesome','','admin/survey/sa/listquestiongroups','','','','','surveycontent','read','{"render": { "link": {"data": {"surveyid": ["survey","sid"]}}}}','','en-GB',1, date('Y-m-d H:i:s'),0,date('Y-m-d H:i:s'),0,1], + [2,null,2,'listQuestionGroups',gT('Group list','unescaped'),gT('Group list','unescaped'),gT('List question groups','unescaped'),'th-list','fontawesome','','admin/survey/sa/listquestiongroups','','','','','surveycontent','read','{"render": { "link": {"data": {"surveyid": ["survey","sid"]}}}}','','en-GB',1, date('Y-m-d H:i:s'),0,date('Y-m-d H:i:s'),0,1], [2,null,3,'responses',gT('Responses','unescaped'),gT('Responses','unescaped'),gT('Responses','unescaped'),'icon-browse','iconclass','','admin/responses/sa/browse/','','','','','responses','read','{"render": {"isActive": true, "link": {"data": {"surveyid": ["survey", "sid"]}}}}','','en-GB',1, date('Y-m-d H:i:s'),0,date('Y-m-d H:i:s'),0,1], [2,null,4,'participants', gT('Survey participants','unescaped'),gT('Survey participants','unescaped'),gT('Go to survey participant and token settings','unescaped'),'user','fontawesome','','admin/tokens/sa/index/','','','','','surveysettings','update','{"render": { "link": {"data": {"surveyid": ["survey","sid"]}}}}','','en-GB',1, date('Y-m-d H:i:s'),0,date('Y-m-d H:i:s'),0,1], [2,null,5,'statistics',gT('Statistics','unescaped'),gT('Statistics','unescaped'),gT('Statistics','unescaped'),'bar-chart','fontawesome','','admin/statistics/sa/index/','','','','','statistics','read','{"render": {"isActive": true, "link": {"data": {"surveyid": ["survey", "sid"]}}}}','','en-GB',1, date('Y-m-d H:i:s'),0,date('Y-m-d H:i:s'),0,1], @@ -413,8 +413,8 @@ public static function getTutorialEntryData() array( 'teid' => 5, 'ordering' => 5, - 'title' => gT('Create a sample question and survey page'), - 'content' => gT("We will be creating a survey page and a question in this tutorial. There is need to automatically create them."), + 'title' => gT('Create a sample question and question group'), + 'content' => gT("We will be creating a question group and a question in this tutorial. There is need to automatically create them."), 'settings' => json_encode(array( 'element' => '.bootstrap-switch-id-createsample', 'path' => ['/admin/survey/sa/newsurvey'], @@ -513,7 +513,7 @@ public static function getTutorialEntryData() 'teid' => 12, 'ordering' => 12, 'title' => gT('The survey structure'), - 'content' => gT('This is the structure view of your survey. Here you can see all your survey pages and questions.'), + 'content' => gT('This is the structure view of your survey. Here you can see all your groups and questions.'), 'settings' => json_encode(array( 'element' => '#adminsidepanel__sidebar--selectorStructureButton', 'path' => ['/admin/survey/sa/view', ['surveyid' => '[0-9]{4,25}']], @@ -527,9 +527,9 @@ public static function getTutorialEntryData() array( 'teid' => 13, 'ordering' => 13, - 'title' => gT("Let's add a survey page"), + 'title' => gT("Let's add a question group"), 'content' => gT("What good would your survey be without questions?").'
' - .gT('In LimeSurvey a survey is organized in survey pages and questions. To begin creating questions, we first need a survey page.') + .gT('In LimeSurvey a survey is organized in groups and questions. To begin creating questions, we first need a question group.') .'

'.gT("Click on the 'Add page' button").'

', 'settings' => json_encode(array( 'element' => '#adminsidepanel__sidebar--selectorCreateQuestionGroup', @@ -547,8 +547,8 @@ public static function getTutorialEntryData() array( 'teid' => 14, 'ordering' => 14, - 'title' => gT('Enter a title for your first survey page'), - 'content' => gT('The title of the survey page is visible to your survey participants (this setting can be changed later and it cannot be empty). survey pages are important because they allow the survey administrators to logically group the questions. By default, each survey page (including its questions) is shown on its own page (this setting can be changed later).'), + 'title' => gT('Enter a title for your first question group'), + 'content' => gT('The title of the question group is visible to your survey participants (this setting can be changed later and it cannot be empty). Question groups are important because they allow the survey administrators to logically group the questions. By default, each question group (including its questions) is shown on its own page (this setting can be changed later).'), 'settings' => json_encode(array( 'element' => '#group_name_en', 'delayOnElement' => "{ @@ -564,9 +564,9 @@ public static function getTutorialEntryData() array( 'teid' => 15, 'ordering' => 15, - 'title' => gT('A description for your survey page'), + 'title' => gT('A description for your question group'), 'content' => gT('This description is also visible to your participants.').'
' - .gT('You do not need to add a description to your survey page, but sometimes it makes sense to add a little extra information for your participants.'), + .gT('You do not need to add a description to your question group, but sometimes it makes sense to add a little extra information for your participants.'), 'settings' => json_encode(array( 'element' => 'label[for=description_en]', 'path' => ['/admin/questiongroups/sa/add', ['surveyid' => '[0-9]{4,25}']], @@ -591,7 +591,7 @@ public static function getTutorialEntryData() 'ordering' => 17, 'title' => gT('Save and add a new question'), 'content' => gT("Now when you are finished click on 'Save and add question'.").'
' - .gT('This will directly add a question to the current survey page.') + .gT('This will directly add a question to the current question group.') .'

'.gT("Now click on 'Save and add question'.").'

', 'settings' => json_encode(array( 'element' => '#save-and-new-question-button', diff --git a/application/core/Survey_Common_Action.php b/application/core/Survey_Common_Action.php index b41c13988d3..fcb530fb955 100644 --- a/application/core/Survey_Common_Action.php +++ b/application/core/Survey_Common_Action.php @@ -860,7 +860,6 @@ function _surveybar($aData) } /** ->>>>>>> parent of 00109dd9e5... Dev: Rename question group to survey page * Show side menu for survey view * @param array $aData all the needed data */ @@ -1130,7 +1129,7 @@ public function _surveysummary($aData) if ($activated == "N" && $sumcount3 == 0) { $aData['warnings'][] = gT("Survey cannot be activated yet."); if ($sumcount2 == 0 && Permission::model()->hasSurveyPermission($iSurveyID, 'surveycontent', 'create')) { - $aData['warnings'][] = "[".gT("You need to add survey pages")."]"; + $aData['warnings'][] = "[".gT("You need to add question groups")."]"; } if ($sumcount3 == 0 && Permission::model()->hasSurveyPermission($iSurveyID, 'surveycontent', 'create')) { $aData['warnings'][] = "".gT("You need to add questions").""; diff --git a/application/helpers/admin/activate_helper.php b/application/helpers/admin/activate_helper.php index 0d7f6ba95af..eb4c7896724 100644 --- a/application/helpers/admin/activate_helper.php +++ b/application/helpers/admin/activate_helper.php @@ -87,7 +87,7 @@ function checkHasGroup($postsid) $groupresult = Yii::app()->db->createCommand($groupquery)->query()->readAll(); if (count($groupresult) == 0) { - return gT("This survey does not contain any survey pages."); + return gT("This survey does not contain any question groups."); } else { return false; } diff --git a/application/helpers/frontend_helper.php b/application/helpers/frontend_helper.php index e488005a47e..fbff472eaf5 100644 --- a/application/helpers/frontend_helper.php +++ b/application/helpers/frontend_helper.php @@ -1288,7 +1288,7 @@ function breakOutAndCrash($sTemplateViewPath, $totalquestions, $iTotalGroupsWith } if ($iTotalGroupsWithoutQuestions > 0) { - $sMessage = gT("There are empty survey pages in this survey - please create at least one question within a survey page."); + $sMessage = gT("There are empty question groups in this survey - please create at least one question within a question group."); } renderError($sTitle, $sMessage, $thissurvey, $sTemplateViewPath); diff --git a/application/helpers/update/updatedb_helper.php b/application/helpers/update/updatedb_helper.php index a3e48ca77d9..61376384d1f 100644 --- a/application/helpers/update/updatedb_helper.php +++ b/application/helpers/update/updatedb_helper.php @@ -2911,10 +2911,10 @@ function db_upgrade_all($iOldDBVersion, $bSilent = false) $oDB->createCommand()->update( "{{surveymenu_entries}}", [ - 'name' => "listSurveyPages", - 'title' => gT('Page list','unescaped'), - 'menu_title' => gT('Page list','unescaped'), - 'menu_description' => gT('List survey pages','unescaped'), + 'name' => "listSurveyGroups", + 'title' => gT('Group list','unescaped'), + 'menu_title' => gT('Group list','unescaped'), + 'menu_description' => gT('List question group','unescaped'), ], 'name=\'listQuestionGroups\'' ); diff --git a/application/models/QuestionBaseDataSet.php b/application/models/QuestionBaseDataSet.php index 3e67ac25fde..fbbff6537e2 100644 --- a/application/models/QuestionBaseDataSet.php +++ b/application/models/QuestionBaseDataSet.php @@ -204,7 +204,7 @@ function ($oQuestionGroup) use (&$aGroupOptions){ 'title' => gT('Question group'), 'formElementId' => 'gid', 'formElementName' => false, - 'formElementHelp' => gT("If you want to change the survey page this question is in."), + 'formElementHelp' => gT("If you want to change the question group this question is in."), 'inputtype' => 'questiongroup', 'formElementValue' => $this->oQuestion->gid, 'formElementOptions' => [ diff --git a/application/models/QuestionGroup.php b/application/models/QuestionGroup.php index 23d9eee3f0b..b018b2b7006 100644 --- a/application/models/QuestionGroup.php +++ b/application/models/QuestionGroup.php @@ -162,7 +162,7 @@ public static function deleteWithDependency($groupId, $surveyId) // Abort if the survey is active $surveyIsActive = Survey::model()->findByPk($surveyId)->active !== 'N'; if ($surveyIsActive) { - Yii::app()->user->setFlash('error', gt("Can't delete survey page when the survey is active")); + Yii::app()->user->setFlash('error', gt("Can't delete question group when the survey is active")); return null; } diff --git a/application/views/admin/assessments/assessments_edit.php b/application/views/admin/assessments/assessments_edit.php index 1b058c90767..a3395ba79de 100644 --- a/application/views/admin/assessments/assessments_edit.php +++ b/application/views/admin/assessments/assessments_edit.php @@ -45,7 +45,7 @@ - +
diff --git a/application/views/admin/checkintegrity/check_view.php b/application/views/admin/checkintegrity/check_view.php index 359474c18c4..c50d68d4766 100644 --- a/application/views/admin/checkintegrity/check_view.php +++ b/application/views/admin/checkintegrity/check_view.php @@ -222,7 +222,7 @@ } ?> -
  • +
    • @@ -231,7 +231,7 @@
    -
  • +
  • - +
  • - +
  • diff --git a/application/views/admin/super/sidemenu.php b/application/views/admin/super/sidemenu.php index e3850271eaa..2a91083b3c0 100644 --- a/application/views/admin/super/sidemenu.php +++ b/application/views/admin/super/sidemenu.php @@ -61,11 +61,11 @@ [ "settings" => gT("Settings"), "structure" => gT("Structure"), - "createPage" => gT("Add page"), + "createPage" => gT("Add group"), "createQuestion" => gT("Add question"), "lockOrganizerTitle" => gT("Lock question organizer"), "unlockOrganizerTitle" => gT("Unlock question organizer"), - "collapseAll" => gT("Collapse all survey pages"), + "collapseAll" => gT("Collapse all question groups"), ] ) .'};', diff --git a/application/views/admin/super/welcome.php b/application/views/admin/super/welcome.php index fe2f6c072d8..bf2490e17b6 100644 --- a/application/views/admin/super/welcome.php +++ b/application/views/admin/super/welcome.php @@ -58,8 +58,8 @@
    1. "); ?>
    2. -
    3. -
    4. +
    5. +
    6. "); ?>
    diff --git a/application/views/admin/survey/Question/importQuestion_view.php b/application/views/admin/survey/Question/importQuestion_view.php index 383b614cd1b..2a694ab4cea 100644 --- a/application/views/admin/survey/Question/importQuestion_view.php +++ b/application/views/admin/survey/Question/importQuestion_view.php @@ -27,7 +27,7 @@
    - +
    +

    diff --git a/application/views/admin/survey/QuestionGroups/importGroup_view.php b/application/views/admin/survey/QuestionGroups/importGroup_view.php index 5aa5f48fc0d..2e452306399 100644 --- a/application/views/admin/survey/QuestionGroups/importGroup_view.php +++ b/application/views/admin/survey/QuestionGroups/importGroup_view.php @@ -13,7 +13,7 @@
    -

    +

    @@ -21,7 +21,7 @@
    -
    @@ -43,7 +43,7 @@
    - + diff --git a/application/views/admin/survey/QuestionGroups/import_view.php b/application/views/admin/survey/QuestionGroups/import_view.php index 94c7f598730..ee5fbdcc676 100644 --- a/application/views/admin/survey/QuestionGroups/import_view.php +++ b/application/views/admin/survey/QuestionGroups/import_view.php @@ -9,19 +9,19 @@
    -

    +

    - +

      -
    • +
    • @@ -32,11 +32,11 @@

    -

    +

    - +

    diff --git a/application/views/admin/survey/breadcrumb.php b/application/views/admin/survey/breadcrumb.php index 8dfcad2f845..828f72a17af 100644 --- a/application/views/admin/survey/breadcrumb.php +++ b/application/views/admin/survey/breadcrumb.php @@ -57,7 +57,7 @@
  • isNewRecord - ? gT('New survey page') + ? gT('New question group') : viewHelper::flatEllipsizeText($oQuestionGroup->questionGroupL10ns[$oSurvey->language]->group_name, 1) ); ?>
  • diff --git a/application/views/admin/survey/organizeGroupsAndQuestions_view.php b/application/views/admin/survey/organizeGroupsAndQuestions_view.php index 653c5eb1ec1..d3543a71910 100644 --- a/application/views/admin/survey/organizeGroupsAndQuestions_view.php +++ b/application/views/admin/survey/organizeGroupsAndQuestions_view.php @@ -5,7 +5,7 @@ ?>
    -

    +

    diff --git a/application/views/admin/survey/subview/_create_survey_text.php b/application/views/admin/survey/subview/_create_survey_text.php index 67c45128a1c..ab4a1d43858 100644 --- a/application/views/admin/survey/subview/_create_survey_text.php +++ b/application/views/admin/survey/subview/_create_survey_text.php @@ -79,7 +79,7 @@

    - +
    widget('yiiwheels.widgets.switch.WhSwitch', array( diff --git a/application/views/admin/survey/subview/_survey_quickaction.php b/application/views/admin/survey/subview/_survey_quickaction.php index c35cf7205b5..d8cd3f5dc78 100644 --- a/application/views/admin/survey/subview/_survey_quickaction.php +++ b/application/views/admin/survey/subview/_survey_quickaction.php @@ -49,7 +49,7 @@ @@ -168,14 +168,14 @@
    diff --git a/assets/packages/textelements/src/TextElementsApp.vue b/assets/packages/textelements/src/TextElementsApp.vue index f084fc866dc..e09d0711aaf 100644 --- a/assets/packages/textelements/src/TextElementsApp.vue +++ b/assets/packages/textelements/src/TextElementsApp.vue @@ -236,7 +236,7 @@ ${scriptContent}
    - +