Deleting an item-set option on Content Studio

Enonic version: 7.0.1
OS: Ubuntu 18.04

I have an item-set (code shown below) that can have up to two items inserted in it. I noticed that when trying to delete one of the inserted options in the item-set I couldn’t do so. After clicking yes on the confirmation pop up that shows up in the end, it was closing without removing the given item. The Content Studio version I’m using is 2.0.3.

So, the problem is that once added, I can’t remove an item-set option on Content Studio. How should I proceed in this case, then?

<field-set>
  <label>Headerlinker</label>
  <items>
    <item-set name="header_menu">
      <label>Headermenypunkt</label>
      <occurrences minimum="0" maximum="2"/>
      <items>
        <input type="TextLine" name="menu_name">
          <label>Navn</label>
          <occurrences minimum="1" maximum="1"/>
        </input>
        <input type="ContentSelector" name="menu_content">
          <label>Innholdselement</label>
          <occurrences minimum="0" maximum="1"/>
          <config>
            <relationshipType>system:reference</relationshipType>
          </config>
        </input>
        <input type="TextLine" name="menu_content_external">
          <label>URL</label>
          <occurrences minimum="0" maximum="1"/>
        </input>
      </items>
    </item-set>
  </items>
</field-set>

This issue is being fixed as we speak: https://github.com/enonic/lib-admin-ui/issues/1148. Bugfix will come in the next release within a couple of weeks.

Glad to hear that!

Thank you @ase !