Add character limits to support wizard: subject (128) and message (4096)

Co-authored-by: stnguyen90 <1477010+stnguyen90@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-09-11 23:49:54 +00:00
parent df4e02d492
commit be3e178e27
+3 -1
View File
@@ -136,12 +136,14 @@
label="Subject"
bind:value={$supportData.subject}
placeholder="What do you need help with?"
maxlength={128}
required />
<InputTextarea
id="message"
bind:value={$supportData.message}
placeholder="Type here..."
label="Tell us a bit more" />
label="Tell us a bit more"
maxlength={4096} />
<Layout.Stack direction="row" justifyContent="flex-end" gap="s">
<Button.Button
size="s"