CivicDataLab / CivicDataLab/DataSpaceFrontend
[Bug] Quill rich text editor: 'bullet' list format not registered — toolbar button silently fails
Open
@Abhishekfm is already working on this.
Since Jun 22, 2026.
bug
- Dominant language
- TypeScript
- Stars
- 1
- Forks
- 0
- Avg merge
- 1d 7h
- Merged PRs (30d)
- 19
Description
Summary
The description rich text editor (Quill) in the AI model Metadata step logs the following error twice on every load:
quill Cannot register "bullet" specified in "formats" config. Are you sure it was registered?
The bullet list type is declared in the Quill formats config but has not been registered with Quill's module system before the editor is instantiated.
Impact
- The bullet list toolbar button (
list: bullet) will silently fail when clicked - Users cannot add bullet-point formatting to their model descriptions
- The error fires on every editor page load, polluting the console
Fix Recommendation
In the Quill editor configuration, either:
- Register the
bulletBlot before instantiating the editor:Quill.register(...), OR - Remove
"bullet"from theformatsarray if bullet lists are not required
Environment
- URL:
https://dev.civicdataspace.in/dashboard/organization/civicdatalab/aimodels/edit/{id}/details - Discovered: 2026-06-22 via QA audit
- Report ref: CDS-005
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Assessment
This issue has not been assessed yet.