Closed (fixed)
Project:
Dashboard
Version:
2.x-dev
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
14 Nov 2024 at 21:31 UTC
Updated:
29 Nov 2024 at 09:59 UTC
Jump to comment: Most recent
Calculate dependencies should include block dependencies.
e.g. from LayoutBuilderEntityViewDisplay:
public function calculateDependencies() {
parent::calculateDependencies();
foreach ($this->getSections() as $section) {
$this->calculatePluginDependencies($section->getLayout());
foreach ($section->getComponents() as $component) {
$this->calculatePluginDependencies($component->getPlugin());
}
}
return $this;
}
Add a block provided by a module and export config.
The dependency is not there.
We should include dependencies.
Fix and test.
None.
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #4
penyaskitoTests passed and failed as expected, thanks!
Comment #6
penyaskito