Active
Project:
Image Lazyloader
Version:
8.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
28 Feb 2022 at 18:20 UTC
Updated:
28 Feb 2022 at 18:37 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #2
zhezhangrandy commentedComment #3
zhezhangrandy commentedLooks like line 157 on src/Form/AdminExclude.php file was causing the issue.
There is a method called
buildVisibilityInterfacecalls $this->conditionManager->getDefinitions();Look like the Context Aware Plugins that provide visibility conditions should use getFilteredDefinitions().
Updated the line to $this->conditionManager->getFilteredDefinitions(‘lazyloader’);
things work properly now.
Comment #4
zhezhangrandy commented