Skip to content

Commit

Permalink
Update RunQueryActionButton.jsx (apache#8320)
Browse files Browse the repository at this point in the history
  • Loading branch information
nabinkhadka authored and Grace Guo committed Sep 30, 2019
1 parent 1f3b67a commit f12de2a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand All @@ -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}
Expand Down

0 comments on commit f12de2a

Please sign in to comment.