From 56949be14dec19533ed2542fdcd263073e37d91d Mon Sep 17 00:00:00 2001 From: nod_ <nod_@598310.no-reply.drupal.org> Date: Sun, 28 Jul 2024 03:10:57 +0200 Subject: [PATCH] Issue #3460598 by catch, m4olivei, penyaskito, finnsky: Single directory component CSS asset library not picked up in admin theme immediately after module install without cache clear (cherry picked from commit 2cf5bf3270249511ceffb95faecc125cd60c41a4) --- core/lib/Drupal/Core/Extension/ModuleInstaller.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/lib/Drupal/Core/Extension/ModuleInstaller.php b/core/lib/Drupal/Core/Extension/ModuleInstaller.php index 7323af67e918..5bafe151af0f 100644 --- a/core/lib/Drupal/Core/Extension/ModuleInstaller.php +++ b/core/lib/Drupal/Core/Extension/ModuleInstaller.php @@ -352,6 +352,11 @@ public function install(array $module_list, $enable_dependencies = TRUE) { // @see https://www.drupal.org/node/2208429 \Drupal::service('theme_handler')->refreshInfo(); + // Modules may provide single directory components which are added to + // the core library definitions rather than the module itself, this + // requires the library discovery cache to be rebuilt. + \Drupal::service('library.discovery')->clearCachedDefinitions(); + // Allow the module to perform install tasks. $this->moduleHandler->invoke($module, 'install', [$sync_status]); -- GitLab