Can not add new pages when status is used in blueprint

The “add new page” button disappears as soon as I declare a status in the blueprint.

The “add new page” button is only visible on draft pages. This blueprint resolved my issue:

columns:
  -  width: 1/2
    sections:

      home:
        headline: Startseite
        type: pages
        status: listed
        layout: cards
        template: home
        size: big
        image:
          ratio: 1/1
          cover: true

      pages:
        headline: Seiten
        type: pages
        status: listed
        layout: cards
        template: default
        size: tiny
        image:
          ratio: 1/1
          cover: true

      new:
        headline: Neue Seite anlegen
        type: pages
        status: draft
        layout: cards

You can close this topic!

(Kirby is awesome)