By catch on
Change record status:
Published (View all published change records)
Project:
Introduced in branch:
9.3.x
Introduced in version:
9.3.0
Issue links:
Description:
Drupal core was providing a 'block_theme' key in form state for block plugins. This was unreliable, and resulted in bugs when it was used, so it is no longer available in form state.
Before
$theme = $form_state->get('block_theme');
After
$theme = \Drupal::config('system.theme')->get('default');
Impacts:
Module developers