Fix data type.

This commit is contained in:
John Livingston 2025-05-21 17:45:56 +02:00
parent 8a12ddabc2
commit 078515572e
No known key found for this signature in database
GPG Key ID: B17B5640CE66CDBC

View File

@ -753,6 +753,9 @@ export class DynamicTableFormElement extends LivechatElement {
.split(propertySchema.separator) .split(propertySchema.separator)
} }
break break
case Number:
rowById.row[propertyName] = Number(value)
break
default: default:
rowById.row[propertyName] = value rowById.row[propertyName] = value
break break