From d95f6376798435d97b9939f4e823c6c44b355e99 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Mon, 27 Oct 2025 06:37:18 +0000
Subject: [PATCH 01/17] Initial plan
From 1c41f8e5f22630f3266b3d4b15672168b66f7ba9 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Mon, 27 Oct 2025 06:51:10 +0000
Subject: [PATCH 02/17] feat: update support wizard with new fields and
filtering
Co-authored-by: stnguyen90 <1477010+stnguyen90@users.noreply.github.com>
---
src/routes/(console)/supportWizard.svelte | 80 +++++++++++++++++---
src/routes/(console)/wizard/support/store.ts | 2 +
2 files changed, 72 insertions(+), 10 deletions(-)
diff --git a/src/routes/(console)/supportWizard.svelte b/src/routes/(console)/supportWizard.svelte
index 6c6aa7045f..3152e5640b 100644
--- a/src/routes/(console)/supportWizard.svelte
+++ b/src/routes/(console)/supportWizard.svelte
@@ -1,6 +1,6 @@
+{#snippet severityPopover()}
+
+
+
+
+
+
+ Critical: System is down or a critical component is non-functional,
+ causing a complete stoppage of work or significant business impact.
+
+
+ High: Major functionality is impaired, but a workaround is
+ available, or a critical component is significantly degraded.
+
+
+ Medium: Minor functionality is impaired without significant business
+ impact.
+
+
+ Low: Issue has minor impact on business operations; workaround is
+ not necessary.
+
+
+ Question: Requests for information, general guidance, or feature
+ requests.
+
+
+
+
+
+{/snippet}
+
From 8a02f948c43f70d948a326073f46f1fe7540441f Mon Sep 17 00:00:00 2001
From: Steven Nguyen
Date: Wed, 5 Nov 2025 13:54:23 -0800
Subject: [PATCH 16/17] fix: update support form
- set default severity to question since there needs to be a value set but the required attribute on InputSelect doesn't work
- require details
---
src/routes/(console)/supportWizard.svelte | 3 ++-
src/routes/(console)/wizard/support/store.ts | 1 +
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/routes/(console)/supportWizard.svelte b/src/routes/(console)/supportWizard.svelte
index 22467ac408..a7574c511f 100644
--- a/src/routes/(console)/supportWizard.svelte
+++ b/src/routes/(console)/supportWizard.svelte
@@ -81,7 +81,7 @@
subject: null,
category: 'technical',
topic: undefined,
- severity: undefined,
+ severity: 'question',
file: null
};
};
@@ -265,6 +265,7 @@
bind:value={$supportData.message}
placeholder="Type here..."
label="Tell us a bit more"
+ required
maxlength={4096} />