Skip to content

Commit

Permalink
fix(KtTable): fix typo
Browse files Browse the repository at this point in the history
Co-Authored-By: Florian Wendelborn <[email protected]>
  • Loading branch information
Isokaeder and FlorianWendelborn committed Jun 5, 2024
1 parent 4e8ea25 commit 7653c75
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,7 @@ export const TableRowCell: any = {
methods: {
cellClick($event: MouseEvent, data: any) {
if (data.column.disableRowClick) {
// @ts-expect-error likely supposed to mean stopPropagation
$event.stopPropogation()
$event.stopPropagation()
}
// @ts-expect-error `this[KT_TABLE]` seems to emulate a provide/inject pattern of sorts
this[KT_TABLE].$emit('cellClick', data)
Expand Down

1 comment on commit 7653c75

@FlorianWendelborn
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

Please sign in to comment.