Skip to content

Commit

Permalink
Fix #5818: Editor missing unordered list icon (#5820)
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware authored Jan 22, 2024
1 parent 50012c1 commit 2d9b204
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/lib/editor/Editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ export const Editor = React.memo(
</span>
<span {...formatsProps}>
<button {...getMergeProps({ type: 'button', className: 'ql-list', value: 'ordered', 'aria-label': 'Ordered List' }, 'list')}></button>
<button {...getMergeProps({ type: 'button', className: cx('list'), value: 'bullet', 'aria-label': 'Unordered List' }, 'list')}></button>
<button {...getMergeProps({ type: 'button', className: 'ql-list', value: 'bullet', 'aria-label': 'Unordered List' }, 'list')}></button>
<select {...getMergeProps({ className: 'ql-align' }, 'select')}>
<option {...getMergeProps({ defaultValue: true }, 'option')}></option>
<option {...getMergeProps({ value: 'center' }, 'option')}></option>
Expand Down

0 comments on commit 2d9b204

Please sign in to comment.