Skip to content

Commit ab1bd3f

Browse files
committed
Fix list style in rich text editor
Closes #2126
1 parent d0b4744 commit ab1bd3f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/ra-input-rich-text/src/QuillSnowStylesheet.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export default {
5353
listStyleType: 'none',
5454
},
5555
'.ql-editor ul > li::before': {
56-
content: "'2022'",
56+
content: "'\\2022'",
5757
},
5858
'.ql-editor ul[data-checked=true], .ql-editor ul[data-checked=false]': {
5959
pointerEvents: 'none',
@@ -67,10 +67,10 @@ export default {
6767
pointerEvents: 'all',
6868
},
6969
'.ql-editor ul[data-checked=true] > li::before': {
70-
content: "'2611'",
70+
content: "'\\2611'",
7171
},
7272
'.ql-editor ul[data-checked=false] > li::before': {
73-
content: "'2610'",
73+
content: "'\\2610'",
7474
},
7575
'.ql-editor li::before': {
7676
display: 'inline-block',

0 commit comments

Comments
 (0)