This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

web/components: use default variant for issue form cancel button

same reasoning as the comment editor: cancelling a draft isn't destructive, so
drop the danger colouring and use the plain default variant.

Signed-off-by: eti <eti@eti.tf>

author
eti
committer
dawn
date (Jul 30, 2026, 7:45 PM +0300) commit d4ee77f7 parent db467454 change-id uuqlnzwk
+1 -8
+1 -8
web/src/lib/components/repo/issues/IssueForm.svelte
··· 103 103 {/if} 104 104 105 105 <div class="flex items-center justify-end gap-2"> 106 - <Button 107 - type="button" 108 - variant="ghost" 109 - icon={X} 110 - disabled={isPublishing} 111 - onclick={oncancel} 112 - class="text-foreground-danger hover:text-foreground-danger" 113 - > 106 + <Button type="button" variant="default" icon={X} disabled={isPublishing} onclick={oncancel}> 114 107 Cancel 115 108 </Button> 116 109 <Button