From bd9936472801e5416f65c25058ebe56eb47af312 Mon Sep 17 00:00:00 2001 From: Paul Wilde Date: Mon, 20 Mar 2023 18:39:43 +0000 Subject: [PATCH] better customer screen WIP --- src/views/customers/CustomerList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/customers/CustomerList.vue b/src/views/customers/CustomerList.vue index 62ba17d..f97953a 100644 --- a/src/views/customers/CustomerList.vue +++ b/src/views/customers/CustomerList.vue @@ -79,7 +79,7 @@ export default { methods: { getCustomerNotes(cust){ this.notes_loading = true - let url = this.$api_url + "/customers/" + cust + "/notes" + let url = this.$api_url + "/customers/" + cust.acc_no + "/notes" axios.get(url) .then(resp => { this.notes = resp.data