From a2ab6453e0591403dc9b98c6ac223865932f8753 Mon Sep 17 00:00:00 2001 From: Shahriar Shatil <52494840+ShatilKhan@users.noreply.github.com> Date: Fri, 20 Oct 2023 15:34:46 +0600 Subject: [PATCH] Change labels to sentence case for Circular Progress Bar component (#7837) --- frontend/src/Editor/WidgetManager/widgetConfig.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/src/Editor/WidgetManager/widgetConfig.js b/frontend/src/Editor/WidgetManager/widgetConfig.js index bb303c2700..88c45b4bd4 100644 --- a/frontend/src/Editor/WidgetManager/widgetConfig.js +++ b/frontend/src/Editor/WidgetManager/widgetConfig.js @@ -4157,28 +4157,28 @@ export const widgets = [ }, textSize: { type: 'code', - displayName: 'Text Size', + displayName: 'Text size', validation: { schema: { type: 'union', schemas: [{ type: 'string' }, { type: 'number' }] }, }, }, strokeWidth: { type: 'code', - displayName: 'Stroke Width', + displayName: 'Stroke width', validation: { schema: { type: 'union', schemas: [{ type: 'string' }, { type: 'number' }] }, }, }, counterClockwise: { type: 'code', - displayName: 'Counter Clockwise', + displayName: 'Counter clockwise', validation: { schema: { type: 'boolean' }, }, }, circleRatio: { type: 'code', - displayName: 'Circle Ratio', + displayName: 'Circle ratio', validation: { schema: { type: 'union', schemas: [{ type: 'string' }, { type: 'number' }] }, },