From ffe16bca541f2771c6acd594b872eb5d88848378 Mon Sep 17 00:00:00 2001 From: Lera24 Date: Mon, 23 Oct 2023 16:46:12 +0300 Subject: [PATCH] fix: number value in configuration page[WTEL-3818] --- .../modules/configuration/components/configuration-popup.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/system/modules/configuration/components/configuration-popup.vue b/src/modules/system/modules/configuration/components/configuration-popup.vue index 09e316b8a..4c02271da 100644 --- a/src/modules/system/modules/configuration/components/configuration-popup.vue +++ b/src/modules/system/modules/configuration/components/configuration-popup.vue @@ -112,7 +112,7 @@ export default { type: 'number', }, on: { - input: (event) => this.setItemProp({ prop: 'value', value: event }), + input: (event) => this.setItemProp({ prop: 'value', value: +event }), }, });