Additionally, despite adding sortable: true to the structure field, the rows in the field remain non-sortable. There’s no drag-and-drop functionality to rearrange them.
Is there something I could be missing in my setup? It all worked fine before switching versions.
i think the id (and maybe even type) field might be a reserved keyword in the structureitem code, like $item->id(). You would need to migrate the content to use a different key as well as the blueprint to show it.
current content
Title: Some Title
----
projects:
- id: pages/example-page
title: example
new content
Title: Some Title
----
projects:
- project: pages/example-page. # id to project
title: example
blueprint
fields:
projects:
label: Portfolio
type: structure
# ... ommited for brevity
fields:
project:
type: pages
store: id # maybe this is needed, see field-properties (link below)
The issue was resolved by removing a plugin that was interfering with the latest Kirby version. Funny how that happens sometimes! Thanks again for your help.