Sharing in case anyone else runs into this. The current patch is behind and does not apply. I attempted to rebase, but it was too many conflicts for me to resolve confidently. In order to not stall the updates to other modules, I had to change svg_image in composer.json like so:
"drupal/svg_image": "dev-3.x#2fe16c7a9f0c511bbcaa44499a4fb61fa0f9854c",
That is the last hash that this patch applies cleanly to.
mirakolous β created an issue. See original summary β .
Line 266 of RateWidgetField seems to be where the issue lies.
I just removed these lines to get it working for me (I don't need the views portion of this widget)
// Mark the widget being part of a view and add the view url.
$widget->set('isViewsField', TRUE);
if (is_null($widget->get('viewsUrl'))) {
if ($this->view->hasUrl()) {
$widget->set('viewsUrl', $this->view->getUrl());
}
}
Mirakolous β created an issue.
Mirakolous β created an issue.