Skip to content

Commit

Permalink
Error logging added to the browser when the client sees an error in t…
Browse files Browse the repository at this point in the history
…he WellsByRun view.
  • Loading branch information
nerdstrike committed Jul 25, 2024
1 parent c704316 commit a7c025a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions frontend/src/views/WellsByRun.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit a7c025a

Please sign in to comment.