From b64a456b92c7664bc45004cb3ed72c109e2af468 Mon Sep 17 00:00:00 2001 From: Nikhil Nandagopal Date: Wed, 11 Mar 2020 13:47:21 +0530 Subject: [PATCH] added label for file picker --- .../components/designSystems/appsmith/FilePickerComponent.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/src/components/designSystems/appsmith/FilePickerComponent.tsx b/app/client/src/components/designSystems/appsmith/FilePickerComponent.tsx index 4a58ff53b5..0665f0d672 100644 --- a/app/client/src/components/designSystems/appsmith/FilePickerComponent.tsx +++ b/app/client/src/components/designSystems/appsmith/FilePickerComponent.tsx @@ -23,7 +23,7 @@ class FilePickerComponent extends React.Component< }; render() { - let label = "Select files"; + let label = this.props.label; if (this.props.files && this.props.files.length) { label = `${this.props.files.length} files selected`; }