From ea77528472155f1956cc7bf645d9638ec710a93a Mon Sep 17 00:00:00 2001 From: Trevor Bayless Date: Fri, 15 Oct 2021 22:09:06 -0500 Subject: [PATCH] Give the Number Input widget a default value (#1105) --- frontend/src/Editor/Components/components.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/Editor/Components/components.js b/frontend/src/Editor/Components/components.js index 6d8a103fbd..3e1105a536 100644 --- a/frontend/src/Editor/Components/components.js +++ b/frontend/src/Editor/Components/components.js @@ -336,7 +336,7 @@ export const componentTypes = [ showOnMobile: { value: false }, }, properties: { - value: { value: '' }, + value: { value: '99' }, placeholder: { value: '0' }, }, events: [],