Skip to content

Commit

Permalink
Affing Monsido Tools patch and contrib module updated
Browse files Browse the repository at this point in the history
  • Loading branch information
vaibhav-acquia committed May 16, 2024
1 parent 14538d5 commit b4cd13c
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 9 deletions.
3 changes: 3 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,9 @@
"drupal/mautic": {
"Mautic blocks | http://drupal.org/node/3229268": "patches/mautic-blocks-3229268-01.patch"
},
"drupal/monsido_tools": {
"Monsido Script Textarea field setting as FALSE": "patches/monsido_tools.patch"
},
"drupal/pathauto": {
"Aliases are not created for affected translations | http://drupal.org/node/2973478": "https://www.drupal.org/files/issues/2018-07-12/2973478-4.patch"
},
Expand Down
16 changes: 8 additions & 8 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/df/df_core/df_core.module
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ function df_core_requirements($phase) {
$requirements['df_version'] = [
'title' => t("Demo Framework"),
'value' => t("7.1.0"),
'description' => 'Last Update: 2024-05-15',
'description' => 'Last Update: 2024-05-16',
'severity' => REQUIREMENT_INFO,
];
}
Expand Down
13 changes: 13 additions & 0 deletions patches/monsido_tools.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
diff --git a/src/Form/MonsidoSettingsForm.php b/src/Form/MonsidoSettingsForm.php
index 3595c64..d133fed 100644
--- a/src/Form/MonsidoSettingsForm.php
+++ b/src/Form/MonsidoSettingsForm.php
@@ -74,7 +74,7 @@ class MonsidoSettingsForm extends ConfigFormBase {
'#title' => $this->t('Script from Monsido.com'),
'#default_value' => $config->get('monsido_script'),
'#description' => $this->t('Paste in the generated script from the Monsido web app. Please provide the entire script as generated.'),
- '#required' => TRUE,
+ '#required' => FALSE,
'#states' => [
'visible' => [
':input[name=enable]' => ['checked' => TRUE],

0 comments on commit b4cd13c

Please sign in to comment.