Skip to content

Commit

Permalink
Apply suggestions from code review.
Browse files Browse the repository at this point in the history
  • Loading branch information
arkflpc authored Sep 21, 2023
1 parent 4bb162e commit 7e4b6f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ export function* iterateSiblingListBlocks(
direction: 'forward' | 'backward' = 'forward'
): IterableIterator<ListIteratorValue> {
const isForward = direction == 'forward';
const previousNodesByIndent = []; // Last seen nodes of lower indented lists.
const previousNodesByIndent: Array<ListElement> = []; // Last seen nodes of lower indented lists.
let previous = null;

while ( isListItemBlock( node ) ) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export default class TodoDocumentListEditing extends Plugin {
{ checked: 'checked' } :
null
),
... ( dataPipeline ?
...( dataPipeline ?
{ disabled: 'disabled' } :
{ tabindex: '-1' }
)
Expand Down

0 comments on commit 7e4b6f6

Please sign in to comment.