diff --git a/app/client/src/components/propertyControls/DropDownControl.tsx b/app/client/src/components/propertyControls/DropDownControl.tsx index 17e8def1a7..5402bf3b21 100644 --- a/app/client/src/components/propertyControls/DropDownControl.tsx +++ b/app/client/src/components/propertyControls/DropDownControl.tsx @@ -6,7 +6,7 @@ import { DropdownOption } from "components/ads/Dropdown"; class DropDownControl extends BaseControl { render() { let defaultSelected: DropdownOption = { - label: "No results.", + label: "No selection.", value: undefined, }; if (this.props.defaultValue) { diff --git a/app/client/src/widgets/TableWidget/TablePropertyPaneConfig.ts b/app/client/src/widgets/TableWidget/TablePropertyPaneConfig.ts index 8c4d2e4371..6bb61a3309 100644 --- a/app/client/src/widgets/TableWidget/TablePropertyPaneConfig.ts +++ b/app/client/src/widgets/TableWidget/TablePropertyPaneConfig.ts @@ -223,10 +223,6 @@ export default [ label: "Original Date Format", controlType: "DROP_DOWN", options: [ - { - label: "No Selection", - value: "", - }, { label: "UNIX timestamp (s)", value: "Epoch", @@ -331,10 +327,6 @@ export default [ customJSControl: "COMPUTE_VALUE", isJSConvertible: true, options: [ - { - label: "No Selection", - value: "", - }, { label: "UNIX timestamp (s)", value: "Epoch",