From 8f9a94328c832931f5bd11fd66865fb76eebb1ba Mon Sep 17 00:00:00 2001 From: Alexander Petric Date: Fri, 18 Sep 2026 14:48:07 -0400 Subject: [PATCH] give the rich text editor toolbar a bullet list button instead of a second ordered one (#11233) Co-authored-by: Claude Fable 5.1 --- .../lib/components/apps/components/inputs/AppQuillEditor.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/lib/components/apps/components/inputs/AppQuillEditor.svelte b/frontend/src/lib/components/apps/components/inputs/AppQuillEditor.svelte index 17ac339e60..83976a3ecd 100644 --- a/frontend/src/lib/components/apps/components/inputs/AppQuillEditor.svelte +++ b/frontend/src/lib/components/apps/components/inputs/AppQuillEditor.svelte @@ -24,7 +24,7 @@ toolbarOptions = [ [{ header: 1 }, { header: 2 }, 'blockquote', 'link', 'image', 'video'], ['bold', 'italic', 'underline', 'strike'], - [{ list: 'ordered' }, { list: 'ordered' }], + [{ list: 'ordered' }, { list: 'bullet' }], [{ align: [] }], ['clean'] ]