Skip to content

Commit

Permalink
1713 naming convention fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
prashanthr6383 committed Jun 30, 2024
1 parent bd03c9a commit 7511427
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ export class ModusTreeViewItem {
}
}

handleKeyDownItemClick(e: KeyboardEvent): void {
handleKeyUpTreeItem(e: KeyboardEvent): void {
if (e.defaultPrevented) {
return;
}
Expand Down Expand Up @@ -453,7 +453,7 @@ export class ModusTreeViewItem {
class={treeItemClass}
onFocus={() => this.handleFocus()}
onClick={(e) => this.handleItemClick(e)}
onKeyUp={(e) => this.handleKeyDownItemClick(e)}
onKeyUp={(e) => this.handleKeyUpTreeItem(e)}
onKeyDown={(e) => this.handleKeyDownTreeItem(e)}
ref={(el) => this.handleRefItemContent(el)}
tabindex={tabIndex}>
Expand Down

0 comments on commit 7511427

Please sign in to comment.