Open zipymonkey opened 1 month ago
The sort order seems correct as it is but the following throws an error.
use Drupal\block\Entity\Block;
use Drupal\Core\Render\Element;
use Drupal\Core\Template\Attribute;
Changing the order as follows "fixes" the error.
use Drupal\Core\Render\Element;
use Drupal\Core\Template\Attribute;
use Drupal\block\Entity\Block;
The last drupal/coder release does make some changes to spellchecker so maybe that is related? Going to punt this issue for now.
Really minor bug.