I’m am currently trying to add a field, in its separate columns, inside a tab and af as I can tell, kirby seems to not like this at all.
In my page blueprint I have a tab that’s extended
tabs:
content :
extends : tabs/content
And the content of that tab looks something like this
label : Content
columns :
- width : 2/3
fields :
text :
label : Page Content
type : textarea
size : medium
- width : 1/3
fields :
tags :
label : Page Tags
type : tags
What I’m trying to do, is to extend this tab and add a new column after the two I already have but I can’t find a way to do it. I’d expect something like this to work
content :
extends : tabs/content
columns :
- width : 3/3
sections :
mysection:
type : fields
fields :
test:
type : text
But what I get is just the new column, the old ones are gone. Am I missing something obvious here?