Undefined array key "#attached" in Drupal\shs\Plugin\Field\FieldWidget\OptionsShsWidget::afterBuild()

Created on 13 June 2023, almost 2 years ago
Updated 14 June 2023, almost 2 years ago

Problem/Motivation

When editing a field settings on a content type that uses shs widget in form display this error is shown (due to default value field):

Error message
Warning: Undefined array key "#attached" in Drupal\shs\Plugin\Field\FieldWidget\OptionsShsWidget::afterBuild() (line 270 of modules/contrib/shs/src/Plugin/Field/FieldWidget/OptionsShsWidget.php).

Drupal\shs\Plugin\Field\FieldWidget\OptionsShsWidget::afterBuild(Array, Object)
call_user_func_array(Array, Array) (Line: 1083)

Proposed resolution

We could use null coalescing operator \Drupal\shs\Plugin\Field\FieldWidget\OptionsShsWidget::afterBuild instead of ternary operator.

    $element['#attached'] = $element['#attached'] ?? [];
    $element['#attached'] = array_merge($element['#attached'], [
      'drupalSettings' => [
        'shs' => [
          $element_key => $element['#shs'],
        ],
      ],
    ]);
🐛 Bug report
Status

Needs review

Version

2.0

Component

Code

Created by

🇸🇮Slovenia useernamee Ljubljana

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Production build 0.71.5 2024