From b0cddd8b2aaf6f86345fa8ff9f2415f00ae5a460 Mon Sep 17 00:00:00 2001 From: Evan Song Date: Tue, 15 Oct 2024 21:43:35 -0700 Subject: [PATCH] chore(pyroerror): improve error messages Signed-off-by: Evan Song --- apps/frontend/src/components/ui/servers/PyroError.vue | 11 ++++++++++- apps/frontend/src/pages/servers/manage/[id].vue | 7 ++++++- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/apps/frontend/src/components/ui/servers/PyroError.vue b/apps/frontend/src/components/ui/servers/PyroError.vue index 5d49a3e81..fe1ef50a6 100644 --- a/apps/frontend/src/components/ui/servers/PyroError.vue +++ b/apps/frontend/src/components/ui/servers/PyroError.vue @@ -22,7 +22,11 @@ > {{ message }} -

+

+ If this issue persists, contact Modrinth support and provide the following server ID: + +

+

If this issue persists, contact Modrinth support.

@@ -56,6 +60,11 @@ defineProps({ type: String, required: true, }, + serverId: { + type: String, + default: "", + required: false, + }, }); diff --git a/apps/frontend/src/pages/servers/manage/[id].vue b/apps/frontend/src/pages/servers/manage/[id].vue index 7ce6894b8..fef25733f 100644 --- a/apps/frontend/src/pages/servers/manage/[id].vue +++ b/apps/frontend/src/pages/servers/manage/[id].vue @@ -1,6 +1,11 @@