According to the corvid reference at https://www.wix.com/corvid/reference/$w.Table.html#rows the example below should set all of the rows of a table with the information returned from a query. The count of items returned by the query is either 2, 3 or more but the table on the web page only shows one item. Is there something else that needs to be set other than what is shown in this example? My code looks exactly like the sample below with the collection name and table name set to my items.
wixData.query("myCollection")
.find()
.then( (results) => {
$w("#myTable").rows = results.items;
} );