You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by be...@apache.org on 2021/02/25 17:52:41 UTC

[superset] branch master updated: sql Lab buttons (#13174)

This is an automated email from the ASF dual-hosted git repository.

beto pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 7766857  sql Lab buttons (#13174)
7766857 is described below

commit 776685736c7c92942ca551b6d10fdac68a977c2c
Author: AAfghahi <48...@users.noreply.github.com>
AuthorDate: Thu Feb 25 12:51:48 2021 -0500

    sql Lab buttons (#13174)
---
 superset-frontend/src/SqlLab/components/ResultSet.tsx | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/superset-frontend/src/SqlLab/components/ResultSet.tsx b/superset-frontend/src/SqlLab/components/ResultSet.tsx
index bf4089f..b662c03 100644
--- a/superset-frontend/src/SqlLab/components/ResultSet.tsx
+++ b/superset-frontend/src/SqlLab/components/ResultSet.tsx
@@ -452,7 +452,7 @@ export default class ResultSet extends React.PureComponent<
                 buttonSize="small"
                 href={`/superset/csv/${this.props.query.id}`}
               >
-                <i className="fa fa-file-text-o" /> {t('.CSV')}
+                <i className="fa fa-file-text-o" /> {t('Download to CSV')}
               </Button>
             )}
 
@@ -461,7 +461,7 @@ export default class ResultSet extends React.PureComponent<
               wrapped={false}
               copyNode={
                 <Button buttonSize="small">
-                  <i className="fa fa-clipboard" /> {t('Clipboard')}
+                  <i className="fa fa-clipboard" /> {t('Copy to Clipboard')}
                 </Button>
               }
             />