Am using metronic 8.1.1, vue version
When you select individual rows on datatables eg customer listing the selected counter on the top right shows a different figure
Hi George,
Thank you for your feedback.
We checked our components and looks like there is an issue with onItemSelect function implementation on customers listing page and some other pages.
We will include fix in upcoming releases. For now, as a temporary solution, you can replace the onItemSelect
function inside file src/views/apps/customers/CustomersListing.vue with the function below.
const onItemSelect = (selectedItems: Array<number>) => {
selectedIds.value = selectedItems;
};