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

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


The following commit(s) were added to refs/heads/master by this push:
     new 25e2517  Update RunQueryActionButton.jsx (#8320)
25e2517 is described below

commit 25e2517dcb82bfd28b242807fa0bc3f332c99327
Author: Nabin Khadka <[email protected]>
AuthorDate: Tue Oct 1 05:40:56 2019 +0545

    Update RunQueryActionButton.jsx (#8320)
---
 superset/assets/src/SqlLab/components/RunQueryActionButton.jsx | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/superset/assets/src/SqlLab/components/RunQueryActionButton.jsx 
b/superset/assets/src/SqlLab/components/RunQueryActionButton.jsx
index 6c2c727..37337a8 100644
--- a/superset/assets/src/SqlLab/components/RunQueryActionButton.jsx
+++ b/superset/assets/src/SqlLab/components/RunQueryActionButton.jsx
@@ -62,7 +62,7 @@ export default function RunQueryActionButton(props) {
         {...commonBtnProps}
         onClick={() => props.runQuery(true)}
         key="run-async-btn"
-        tooltip={t('Run query asynchronously')}
+        tooltip={t('Run query asynchronously (Ctrl + ↵)')}
         disabled={!props.sql.trim()}
       >
         <i className="fa fa-table" /> {runBtnText}
@@ -73,7 +73,7 @@ export default function RunQueryActionButton(props) {
       {...commonBtnProps}
       onClick={() => props.runQuery(false)}
       key="run-btn"
-      tooltip={t('Run query synchronously')}
+      tooltip={t('Run query synchronously (Ctrl + ↵)')}
       disabled={!props.sql.trim()}
     >
       <i className="fa fa-refresh" /> {runBtnText}

Reply via email to