Skip to content

Commit

Permalink
fix: kebab-case sx property error (#394)
Browse files Browse the repository at this point in the history
  • Loading branch information
lihebi committed Jul 24, 2023
1 parent 00de62c commit 5de335a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ui/src/components/nodes/Rich.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -346,13 +346,13 @@ const MyEditor = ({
cursor: "auto",
// Display different markers for different levels in nested ordered lists.
ol: {
"list-style-type": "decimal",
listStylType: "decimal",
},
"ol li ol": {
"list-style-type": "lower-alpha",
listStyleType: "lower-alpha",
},
"ol li ol li ol": {
"list-style-type": "lower-roman",
listStyleType: "lower-roman",
},
}}
ref={ref}
Expand Down

0 comments on commit 5de335a

Please sign in to comment.