Incorrect List Insertion in Quill Editor
Author: ST-NANDHAGOPANCreated Oct 3, 2024Updated Jul 28, 2026
**Description:**
When using the bullet tool in the Quill editor, both a bullet and a number are inserted simultaneously, even when the numbered list tool is not included in the editor configuration.

**Environment:**
Quill Version: 2.0.2
React Version: 18.2.0
**Steps to Reproduce:**
1. Set up a Quill editor instance with the following toolbar options:
```
const toolbarOptions = [
[{ font: [] }, { header: [1, 2, 3, 4, 5, 6, false] }],
["bold", "italic", "underline", "strike"],
[{ list: "ordered" }, { list: "bullet" }, { align: [] }],
["link", "image", "video"],
["blockquote", "code-block"],
["clean"],
[{ color: [] }, { background: [] }],
["hr", "emoji"],
];
```
2. Click on the bullet tool in the toolbar.
**Expected Behavior:**
The editor should insert a bullet point within an unordered list `(
- ) `without any numbering.
**Actual Behavior**:
The editor inserts a bullet point within an ordered list `(
- dfdsrffddfdf
- )` , resulting in HTML content like this:
`
Source: slab/quill