From a7c025acaef50714bc5fc89646d9325a1179cd37 Mon Sep 17 00:00:00 2001 From: Kieron Taylor Date: Thu, 25 Jul 2024 14:52:12 +0000 Subject: [PATCH] Error logging added to the browser when the client sees an error in the WellsByRun view. --- frontend/src/views/WellsByRun.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/views/WellsByRun.vue b/frontend/src/views/WellsByRun.vue index 2086b12..e80bab0 100644 --- a/frontend/src/views/WellsByRun.vue +++ b/frontend/src/views/WellsByRun.vue @@ -53,6 +53,7 @@ watch(() => props.runName, () => { Promise.all(promises).then( (values) => (wellCollection.value = flatten_data(values)) ).catch(error => { + console.log(error.message + " when resolving promises in props.runName watcher") ElMessage({ message: error.message, type: "warning",