From 7653c758b87809c3a9ec51b3112ed49c0b81c81c Mon Sep 17 00:00:00 2001 From: Moritz Vetter <16950410+Isokaeder@users.noreply.github.com> Date: Wed, 5 Jun 2024 15:12:27 +0200 Subject: [PATCH] fix(KtTable): fix typo Co-Authored-By: Florian Wendelborn <1133858+FlorianWendelborn@users.noreply.github.com> --- .../kotti-ui/source/kotti-table/components/TableRowCell.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/kotti-ui/source/kotti-table/components/TableRowCell.ts b/packages/kotti-ui/source/kotti-table/components/TableRowCell.ts index 53d8e78dec..01bcac575b 100644 --- a/packages/kotti-ui/source/kotti-table/components/TableRowCell.ts +++ b/packages/kotti-ui/source/kotti-table/components/TableRowCell.ts @@ -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)