Problem/Motivation

I have a twig template where I'm embedded two VBO views (same view, same display, different arguments) with the Delete action only. If I try to bulk delete items from the first VBO view, it works fine. If I try to bulk delete items from the second VBO view, the batch screen comes up but no nodes are selected/deleted.

Steps to reproduce

Embed two VBO views in a twig template. Note that these are views "embed" displays.

{{ drupal_view('vbo_view', 'selections', uid, 'active') }}

and

{{ drupal_view('vbo_view', 'selections', uid, 'inactive') }}

Workaround

I'm able to work around the issue by making a new view embed display and using *that* as the second display in the twig template but I'm also thinking it should work by embedding the same view (with potentially different arguments) multiple times on a page.

Comments

karschsp created an issue.