I have the below JSON and I just wanted to use a table to display 2 columns
name, date
{
"issues": [{
"name": "Issue 1",
"release": [{
"version": "1",
"date": "2022-01-01"
}]
},
{
"name": "Issue 2",
"release": [{
"version": "2"
}]
},
{
"name": "Issue 3",
"release": [{
"version": "3",
"date": "2022-01-02"
}]
}
]
}
The "date" in the second item is missing, so the data is not aligned, tried to use @kf:fill_elements(/issues/releases,'date') doesn't work as far as I know because of nested array, how can I achieve this request?
Thank you.