diff --git a/packages/kotti-ui/package.json b/packages/kotti-ui/package.json
index 040cb5d9a..06181fd3d 100644
--- a/packages/kotti-ui/package.json
+++ b/packages/kotti-ui/package.json
@@ -98,5 +98,5 @@
"style": "./dist/style.css",
"type": "module",
"types": "./dist/index.d.ts",
- "version": "8.3.1"
+ "version": "8.3.2"
}
diff --git a/packages/kotti-ui/source/kotti-table/KtStandardTable.vue b/packages/kotti-ui/source/kotti-table/KtStandardTable.vue
index 00c410e8d..64824992f 100644
--- a/packages/kotti-ui/source/kotti-table/KtStandardTable.vue
+++ b/packages/kotti-ui/source/kotti-table/KtStandardTable.vue
@@ -20,6 +20,7 @@
,
},
isLoading: { default: false, type: Boolean },
-
size: { default: 'md', type: String },
value: {
default: () => [],
diff --git a/packages/kotti-ui/source/kotti-table/standard-table/components/PageSize.vue b/packages/kotti-ui/source/kotti-table/standard-table/components/PageSize.vue
index c24292bf8..8d4893fd2 100644
--- a/packages/kotti-ui/source/kotti-table/standard-table/components/PageSize.vue
+++ b/packages/kotti-ui/source/kotti-table/standard-table/components/PageSize.vue
@@ -32,6 +32,7 @@ export default defineComponent({
return {
options: computed(() =>
props.pageSizeOptions.map((value) => ({
+ dataTest: `table-page-size-options-${value}`,
label: String(value),
value,
})),