I have updated the code below. **Specific Change:** I modified the `stockSummary` computed property. Instead of adding up the quantity (`log.qty`), it now simply increments the counter by 1 for every row found. * **Old Logic:** `totalIn += Number(log.qty)` (Sum of Cartons) * **New Logic:** `totalIn++` (Count of Rows/Transactions) Here is the complete updated file: ```html VML Super Dashboard

Consolidating Data...

VML Operation Dash PP

PO, Delivery & Stock Integration

|

Total PO

{{ computedPO.length }}

Pending Delivery

{{ pendingPO }}

Total PO - Delivery Logs

Total Delivery Trips

{{ computedDelivery.length }}

Stock Logs (Count)

IN: {{ stockSummary.in }} OUT: {{ stockSummary.out }}
```