• Resolved volaticus

    (@volaticus)


    When using the block inserter control in LazyBlocks, the inserter doesn’t properly close blocks added to it, or at least not other LazyBlocks. The result is, if you add more than one block using the inserter control, all of the blocks are inserted into each other, leaving us unable to use the inserter control. How I expect this would behave is with each block added to the inserter closing completely instead of each subsequent block being added to the previous one. E.G.; it behaves like this:

    <section class="inserter-element">
        <div class="first-inserted-block">
            <div class="some-content">
            </div>
            <div class="second-inserted-block">
                <div class="some-content">
                </div>
                <div class="third-inserted-block">
                    <div class="some-content">
                    </div>
                </div>
            </div>
        </div>
    </section>

    When I expect it to behave like this:

    <section class="inserter-element">
        <div class="first-inserted-block">
            <div class="some-content">
            </div>
        </div>
        <div class="second-inserted-block">
            <div class="some-content">
            </div>
        </div>
        <div class="third-inserted-block">
            <div class="some-content">
            </div>
        </div>
    </section>
    • This topic was modified 3 years, 5 months ago by volaticus.
Viewing 1 replies (of 1 total)
  • Thread Starter volaticus

    (@volaticus)

    After troubleshooting, this was determined to be another plugin interfering with the output, please disregard.

Viewing 1 replies (of 1 total)

The topic ‘Block Inserter Control Doesn’t Close Properly’ is closed to new replies.