I have prepared this dynamic page to show several economic pdfs over the years.
Everything works for a year until yesterday, but I have not done anything on my site this year, and today I am no longer able to get the following page displayed correctly.
The table on the left shows only one year:
https://www.slowfoodcostierasorrentina.it/bilancio-di-esercizio
Is something changed in this year ? I would love if someone could help me
thanks in advance
Mauro
import wixData from 'wix-data';
import wixLocation from 'wix-location';
$w.onReady(async function () {
let annoArray = [];
await wixData.query("bilancio")
.ascending("anno")
.find()
.then( (res) => {
annoArray = res.items
$w('#table1').rows = annoArray
})
console.log(annoArray)
})