Hello!
I’m trying to configure an element with display: grid > grid-template-columns: repeat(2, 1fr);, however, it only applies the property correctly when an HTML a element is attached to it:
"
“list-context.image-list#lp_grow-block-mais-vendidas-images”: {
“title”: “”,
“children”: [
“container.list-render#lp_grow-block-mais-vendidas-images”
],
“props”: {
“images”: [{
“image”: “https://dummyimage.com/643x886”,
“mobileImage”: “”
// ,
// “link”: {
// “url”: “#”
// }
},
{
“image”: “https://dummyimage.com/734x426”,
“mobileImage”: “”
// ,
// “link”: {
// “url”: “#”
// }
},
{
“image”: “https://dummyimage.com/734x426”,
“mobileImage”: “”
// ,
// “link”: {
// “url”: “#”
// }
}
]
}
},
“container.list-render#lp_grow-block-mais-vendidas-images”: {
“props”: {
“blockClass”: [“lp_image”, “lp_mais-vendidas-images”, “banner-grid”],
“wrapper”: true
}
},
"
As shown above, the element without the link does not render correctly:
With the link enabled:
I wanted to know if anyone has found a workaround for this, or if there’s any other viable solution, since the template I’m building won’t have links for these images.
Thanks!

