Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
e11sy committed Aug 26, 2024
1 parent 10a723c commit 9e6afe4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/dom-adapters/src/BlockToolAdapter/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ export class BlockToolAdapter {

/**
* Handles model update events for native inputs and updates DOM
*
*
* @param event - model update event
* @param input - input element
* @param key - data key input is attached to
Expand Down Expand Up @@ -270,10 +270,11 @@ export class BlockToolAdapter {

/**
* Handles model update events for contenteditable elements and updates DOM
*
*
* @param event - model update event
* @param input - input element
* @param key - data key input is attached to
* @param caretAdapter - caret adapter instance
*/
#handleModelUpdateForContentEditableElement(event: ModelEvents, input: HTMLElement, key: DataKey, caretAdapter: CaretAdapter): void {
if (!(event instanceof TextAddedEvent) && !(event instanceof TextRemovedEvent)) {
Expand Down

0 comments on commit 9e6afe4

Please sign in to comment.