Skip to content

Commit

Permalink
remove excess spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
jscastanos committed Jan 13, 2025
1 parent d52c221 commit 134b77d
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -431,39 +431,39 @@ export default class EditorjsList {
switch (this.listStyle) {
case 'ordered':
this.list = new ListTabulator<OrderedListRenderer>({
data: this.data,
readOnly: this.readOnly,
api: this.api,
config: this.config,
block: this.block,
},
new OrderedListRenderer(this.readOnly, this.config)
data: this.data,
readOnly: this.readOnly,
api: this.api,
config: this.config,
block: this.block,
},
new OrderedListRenderer(this.readOnly, this.config)
);

break;

case 'unordered':
this.list = new ListTabulator<UnorderedListRenderer>({
data: this.data,
readOnly: this.readOnly,
api: this.api,
config: this.config,
block: this.block,
},
new UnorderedListRenderer(this.readOnly, this.config)
data: this.data,
readOnly: this.readOnly,
api: this.api,
config: this.config,
block: this.block,
},
new UnorderedListRenderer(this.readOnly, this.config)
);

break;

case 'checklist':
this.list = new ListTabulator<CheckListRenderer>({
data: this.data,
readOnly: this.readOnly,
api: this.api,
config: this.config,
block: this.block,
},
new CheckListRenderer(this.readOnly, this.config)
data: this.data,
readOnly: this.readOnly,
api: this.api,
config: this.config,
block: this.block,
},
new CheckListRenderer(this.readOnly, this.config)
);

break;
Expand Down

0 comments on commit 134b77d

Please sign in to comment.