diff --git a/lib/basic/oui-table.vue b/lib/basic/oui-table.vue
index c4b8290..8a92fc9 100644
--- a/lib/basic/oui-table.vue
+++ b/lib/basic/oui-table.vue
@@ -70,14 +70,14 @@ function doSelect(pos: number) {
-
+
- {{ row[col.name] }}
+ {{ item[col.name] }}
|
diff --git a/lib/basic/oui-tableview.story.vue b/lib/basic/oui-tableview.story.vue
index 3faaf67..b59ed7e 100644
--- a/lib/basic/oui-tableview.story.vue
+++ b/lib/basic/oui-tableview.story.vue
@@ -2,7 +2,7 @@
import { computed, reactive, ref } from 'vue'
import { createArray, sortedOrderby, uuid } from 'zeed'
import type { OuiTableColumn } from '../lib'
-import { OuiDraggable, OuiTable, useMenu } from '../lib'
+import { useMenu } from '../lib'
import OuiTableview from './oui-tableview.vue'
const state = reactive({
@@ -67,8 +67,8 @@ const x = ref(0)
{{ col.name }} {{ value }}
-
-
@@ -107,7 +104,8 @@ function doSelect(pos: number) {
value: item[col.name],
col,
pos,
- row: item }"
+ item,
+ }"
>
{{ item[col.name] }}
diff --git a/package.json b/package.json
index f88857e..8b68dc9 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "oui-kit",
"type": "module",
- "version": "0.14.3",
+ "version": "0.14.4",
"author": {
"name": "Dirk Holtwick",
"email": "dirk.holtwick@gmail.com",