haroldus-
haroldus-
The issue is with the [`createContainerElement`](https://github.com/basecamp/trix/blob/06d8b1db5fb682d007c5ca041884f6297674c8b7/src/trix/views/block_view.js#L44C3-L44C25) function, which (to my mind) inexplicably recreates an object for use with the [`makeElement`](https://github.com/basecamp/trix/blob/06d8b1db5fb682d007c5ca041884f6297674c8b7/src/trix/core/helpers/dom.js#L160C8-L216C2) function instead of just using the object from [`config`](https://github.com/basecamp/trix/blob/main/src/trix/config/block_attributes.js). In...
What about putting this in a migration? ```ruby class CreateSolidQueueTables < ActiveRecord::Migration[8.0] def change load Rails.root.join("db", "queue_schema.rb") end end ```