Skip to content

Commit

Permalink
fix: trailing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
JiLiZART authored Sep 28, 2023
1 parent 2d9c43e commit bde3f84
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/bbob-preset-html5/src/defaultTags.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ export default {
color: (node) => ({
tag: 'color',
attrs: {
style: `color: ${getUniqAttr(node.attrs)}`
style: `color: ${getUniqAttr(node.attrs)}`,
},
content: node.content
})
content: node.content,
}),
};

0 comments on commit bde3f84

Please sign in to comment.