remove technical details from user-facing messages

This commit is contained in:
2023-09-04 15:37:39 -06:00
parent 4b9cbd0e9f
commit 52a6451a2d
2 changed files with 6 additions and 5 deletions

View File

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