Skip to content

Commit ba630ae

Browse files
committed
fix: change let to const
1 parent 644a94e commit ba630ae

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • packages/super-editor/src/core/super-converter

packages/super-editor/src/core/super-converter/exporter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ function generateParagraphProperties(node) {
234234
const { styleId } = attrs;
235235
if (styleId) pPrElements.push({ name: 'w:pStyle', attributes: { 'w:val': styleId } });
236236

237-
let { spacing, indent, textAlign, textIndent, lineHeight, marksAttrs, keepLines, keepNext, dropcap } = attrs;
237+
const { spacing, indent, textAlign, textIndent, lineHeight, marksAttrs, keepLines, keepNext, dropcap } = attrs;
238238
if (spacing) {
239239
const { lineSpaceBefore, lineSpaceAfter, lineRule } = spacing;
240240

0 commit comments

Comments
 (0)