- Issue created by @skyredwang
- First commit to issue fork.
- Merge request !19Issue #3533677 by ivnish, skyredwang: Exception: Warning: Undefined array key "#other_option" → (Open) created by ivnish
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