- Issue created by @skyredwang
When running a custom Functional Test which uses this module.
Exception: Warning: Undefined array key "#other_option" Drupal\select_or_other\Element\ElementBase::addSelectField()() (Line: 141)
is thrown
This is because $element['#other_option']
could be undefined.
Use nullsafety check $element['#other_option'] ?? ''
Active
4.2
Code