Skip to content

Commit

Permalink
Merge branch 'develop' into feature/SD-279-paragraph-revisions-cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
yeniatencio committed Nov 1, 2024
2 parents cb396c8 + db3d191 commit 65f0500
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/tide_site/src/AliasManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class AliasManager extends CoreAliasManager {
/**
* {@inheritdoc}
*/
public function __construct(AliasRepositoryInterface $repository, AliasWhitelistInterface $whitelist, LanguageManagerInterface $language_manager, CacheBackendInterface $cache, protected ?TimeInterface $time = NULL, AliasStorageHelper $alias_helper) {
public function __construct(AliasRepositoryInterface $repository, AliasWhitelistInterface $whitelist, LanguageManagerInterface $language_manager, CacheBackendInterface $cache, protected ?TimeInterface $time, AliasStorageHelper $alias_helper) {
parent::__construct($repository, $whitelist, $language_manager, $cache, $time);
$this->aliasHelper = $alias_helper;
}
Expand Down
2 changes: 1 addition & 1 deletion modules/tide_webform/tide_webform.module
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function tide_webform_form_alter(&$form, FormStateInterface $form_state, $form_i
if ($form_id == 'webform_ui_element_form') {
$form['#after_build'][] = 'tide_webform_webform_ui_element_form_after_build';
$form['#attached']['library'][] = 'tide_webform/webform';
if (isset($form['properties']['form']['length_container']['maxlength']) && array_key_exists('#default_value', $form['properties']['form']['length_container']['maxlength'])) {
if (isset($form['properties']['form']['length_container']['maxlength']) && array_key_exists('#default_value', $form['properties']['form']['length_container']['maxlength']) && $form['properties']['type']['#value'] === 'textfield') {
$default_value = NestedArray::getValue($form,
[
'properties',
Expand Down

0 comments on commit 65f0500

Please sign in to comment.