Browse Source

remove technical details from user-facing messages

search-bbox
Trent Larson 1 year ago
parent
commit
52a6451a2d
  1. 6
      src/views/DiscoverView.vue
  2. 5
      src/views/ProjectsView.vue

6
src/views/DiscoverView.vue

@ -312,12 +312,13 @@ export default class DiscoverView extends Vue {
if (response.status !== 200) { if (response.status !== 200) {
const details = await response.text(); const details = await response.text();
console.log("Problem with full search:", details);
this.$notify( this.$notify(
{ {
group: "alert", group: "alert",
type: "danger", type: "danger",
title: "Error", title: "Error",
text: `There was a problem accessing the server. Please try again later. (${details})`, text: `There was a problem accessing the server. Try again later.`,
}, },
-1, -1,
); );
@ -386,12 +387,13 @@ export default class DiscoverView extends Vue {
if (response.status !== 200) { if (response.status !== 200) {
const details = await response.text(); const details = await response.text();
console.log("Problem with nearby search:", details);
this.$notify( this.$notify(
{ {
group: "alert", group: "alert",
type: "danger", type: "danger",
title: "Error", title: "Error",
text: `There was a problem accessing the server. Please try again later. (${details})`, text: "There was a problem accessing the server. Try again later.",
}, },
-1, -1,
); );

5
src/views/ProjectsView.vue

@ -141,14 +141,13 @@ export default class ProjectsView extends Vue {
} }
// eslint-disable-next-line @typescript-eslint/no-explicit-any // eslint-disable-next-line @typescript-eslint/no-explicit-any
} catch (error: any) { } catch (error: any) {
console.error("Got error loading projects:", error.message); console.error("Got error loading projects:", error.message || error);
const additional = error.message ? " " + error.message : "";
this.$notify( this.$notify(
{ {
group: "alert", group: "alert",
type: "danger", type: "danger",
title: "Error", title: "Error",
text: "Got an error loading projects." + additional, text: "Got an error loading projects.",
}, },
-1, -1,
); );

Loading…
Cancel
Save