From efabcc690ef42094b85d5375e06b3ee2d9df74b9 Mon Sep 17 00:00:00 2001 From: Nikhil Nandagopal Date: Fri, 22 May 2020 18:38:57 +0530 Subject: [PATCH] set empty labels --- app/client/src/mockResponses/WidgetConfigResponse.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/client/src/mockResponses/WidgetConfigResponse.tsx b/app/client/src/mockResponses/WidgetConfigResponse.tsx index 5df60b0647..d26ae8424a 100644 --- a/app/client/src/mockResponses/WidgetConfigResponse.tsx +++ b/app/client/src/mockResponses/WidgetConfigResponse.tsx @@ -42,6 +42,7 @@ const WidgetConfigResponse: WidgetConfigReducerState = { INPUT_WIDGET: { inputType: "TEXT", rows: 1, + label: "", columns: 5, widgetName: "Input", }, @@ -83,6 +84,7 @@ const WidgetConfigResponse: WidgetConfigReducerState = { isDisabled: false, datePickerType: "DATE_PICKER", rows: 1, + label: "", dateFormat: "DD/MM/YYYY", columns: 5, widgetName: "DatePicker", @@ -120,6 +122,7 @@ const WidgetConfigResponse: WidgetConfigReducerState = { DROP_DOWN_WIDGET: { rows: 1, columns: 5, + label: "", selectionType: "SINGLE_SELECT", options: [ { label: "Option 1", value: "1" }, @@ -138,6 +141,7 @@ const WidgetConfigResponse: WidgetConfigReducerState = { RADIO_GROUP_WIDGET: { rows: 2, columns: 3, + label: "", options: [ { id: "1", label: "Alpha", value: "1" }, { id: "2", label: "Bravo", value: "2" },