From 078515572e54ddebcf098bfab523770d68f48316 Mon Sep 17 00:00:00 2001 From: John Livingston Date: Wed, 21 May 2025 17:45:56 +0200 Subject: [PATCH] Fix data type. --- client/common/lib/elements/dynamic-table-form.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/client/common/lib/elements/dynamic-table-form.ts b/client/common/lib/elements/dynamic-table-form.ts index c0a2311d..e8ba4332 100644 --- a/client/common/lib/elements/dynamic-table-form.ts +++ b/client/common/lib/elements/dynamic-table-form.ts @@ -753,6 +753,9 @@ export class DynamicTableFormElement extends LivechatElement { .split(propertySchema.separator) } break + case Number: + rowById.row[propertyName] = Number(value) + break default: rowById.row[propertyName] = value break