Hi!
I have this configuration for a multi file inside a list:
header.imageslist:
name: imagelist
type: list
style: vertical
fields:
.images:
type: file
style: vertical
destination: '@self/images'
multiple: true
accept:
- image/*
validate:
type: array
.title:
type: text
style: vertical
label: Title
validate:
type: array
When I fill it with images, I got this:
imageslist:
-
title: 'Test’
images:
user/pages/01.Test/mars/images/mars.jpeg
name: mars.jpeg
type: image/jpeg
size: 53984
path: user/pages/01.Test/mars/images/mars.jpeg
But, when I re-save, I got:
imageslist:
-
title: 'Behind the scenes’
images:
user/pages/01.Test/mars/images/mars.jpeg:
- mars.jpeg
- image/jpeg
- ‘53984’
- user/pages/01.Test/mars/images/mars.jpeg
So, I suppose there’s something wrong with my markdown or it cannot be read… Help needed!!!