πΊπΈUnited States emilorol
The fix for line 131 of "queue_ui/src/Form/ItemDetailForm.php" is this one:
$data = $this->renderer->renderPlain($data);
Change to this:
$data = $this->renderer->renderInIsolation($data);
πΊπΈUnited States emilorol
How are we are doing on this one?
Any updates?
πΊπΈUnited States emilorol
Since Bootswatch
is already included in the main theme you can just do something like this to use Yeti
for example:
1. In your sub theme "style.scss" add:
// Import Bootswatch theme
@import '../../../../themes/contrib/bootstrap5/dist/bootswatch/dist/yeti/variables';
// Sub theme styling.
@import 'variables_drupal';
// Bootstrap overridden variables.
// @see https://getbootstrap.com/docs/5.2/customize/sass/#variable-defaults.
@import 'variables_bootstrap';
// Include bootstrap.
@import '../../../../themes/contrib/bootstrap5/scss/style';
// Import Bootswatch theme styles
@import '../../../../themes/contrib/bootstrap5/dist/bootswatch/dist/yeti/bootswatch';
// Include custom changes.
@import "custom";
2. Compile the changes like:
sass scss/style.scss css/style.css && sass scss/ck5style.scss css/ck5style.css