Skip to content

Commit

Permalink
Add missing error snackbar msg
Browse files Browse the repository at this point in the history
  • Loading branch information
duytnguyendtn committed Oct 24, 2024
1 parent 8403306 commit fbfaa1d
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,13 @@ def vue_query_resource(self, _=None):
self.source, frame=self.coordframe_selected
)
except Exception:
self.hub.broadcast(
SnackbarMessage(
f"Unable to resolve source coordinates: {self.source}",
sender=self,
color="error",
)
)
raise LookupError(
f"Unable to resolve source coordinates: {self.source}"
)
Expand Down

0 comments on commit fbfaa1d

Please sign in to comment.