From 05fab4b7a120ebaac6426ca12663f5c30b4f39ca Mon Sep 17 00:00:00 2001 From: Nikhil Nandagopal Date: Thu, 16 Jan 2020 09:34:36 +0000 Subject: [PATCH] Hotfix/table data --- .../mockResponses/WidgetConfigResponse.tsx | 63 ++++++++----------- 1 file changed, 25 insertions(+), 38 deletions(-) diff --git a/app/client/src/mockResponses/WidgetConfigResponse.tsx b/app/client/src/mockResponses/WidgetConfigResponse.tsx index 3beae2037d..3308a09c55 100644 --- a/app/client/src/mockResponses/WidgetConfigResponse.tsx +++ b/app/client/src/mockResponses/WidgetConfigResponse.tsx @@ -68,52 +68,39 @@ const WidgetConfigResponse: WidgetConfigReducerState = { widgetName: "Table", tableData: [ { - Id: 7, - Email: "michael.lawson@reqres.in", - "First Name": "Michael", - "Last Name": "Lawson", - Avatar: - "https://s3.amazonaws.com/uifaces/faces/twitter/follettkyle/128.jpg", + id: 2381224, + email: "michael.lawson@reqres.in", + userName: "Michael Lawson", + productName: "Chicken Sandwich", + orderAmount: 4.99, }, { - Id: 8, - Email: "lindsay.ferguson@reqres.in", - "First Name": "Lindsay", - "Last Name": "Ferguson", - Avatar: - "https://s3.amazonaws.com/uifaces/faces/twitter/araa3185/128.jpg", + id: 2736212, + email: "lindsay.ferguson@reqres.in", + userName: "Lindsay Ferguson", + productName: "Tuna Salad", + orderAmount: 9.99, }, { - Id: 9, - Email: "tobias.funke@reqres.in", - "First Name": "Tobias", - "Last Name": "Funke", - Avatar: - "https://s3.amazonaws.com/uifaces/faces/twitter/vivekprvr/128.jpg", + id: 6788734, + email: "tobias.funke@reqres.in", + userName: "Tobias Funke", + productName: "Beef steak", + orderAmount: 19.99, }, { - Id: 10, - Email: "byron.fields@reqres.in", - "First Name": "Byron", - "Last Name": "Fields", - Avatar: - "https://s3.amazonaws.com/uifaces/faces/twitter/russoedu/128.jpg", + id: 7434532, + email: "byron.fields@reqres.in", + userName: "Byron Fields", + productName: "Chicken Sandwich", + orderAmount: 4.99, }, { - Id: 11, - Email: "george.edwards@reqres.in", - "First Name": "George", - "Last Name": "Edwards", - Avatar: - "https://s3.amazonaws.com/uifaces/faces/twitter/mrmoiree/128.jpg", - }, - { - Id: 12, - Email: "rachel.howell@reqres.in", - "First Name": "Rachel", - "Last Name": "Howell", - Avatar: - "https://s3.amazonaws.com/uifaces/faces/twitter/hebertialmeida/128.jpg", + id: 7434532, + email: "ryan.holmes@reqres.in", + userName: "Ryan Holmes", + productName: "Avocado Panini", + orderAmount: 7.99, }, ], },