Skip to content

Commit d415eee

Browse files
author
kehua
committed
feat(): update classname
1 parent ed517c6 commit d415eee

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bricks/markdown/src/markdown-editor/components/ListItem.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export const ListItem: FC = () => {
1010
const isBullet = attrs?.listType === "bullet";
1111
return (
1212
<li
13-
className={classNames("checkboxLi", {
13+
className={classNames("listItem", {
1414
"ProseMirror-selectednode": selected,
1515
})}
1616
>

bricks/markdown/src/markdown-editor/markdown-editor.shadow.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1991,7 +1991,7 @@ pre[class*="language-"] {
19911991

19921992
/* checkbox */
19931993

1994-
.checkboxLi {
1994+
.listItem {
19951995
display: flex;
19961996
align-items: flex-start;
19971997
gap: 0.5rem;

0 commit comments

Comments
 (0)