Skip to content

Commit

Permalink
sql lab and explore view run query button updated
Browse files Browse the repository at this point in the history
  • Loading branch information
aadhikari committed May 3, 2023
1 parent 4256550 commit 93062b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const buildText = (
if (shouldShowStopButton) {
return (
<>
<i className="fa fa-stop-circle-o" /> {t('Stop')}
<i className="fa fa-stop" /> {t('Stop')}
</>
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export const RunQueryButton = ({
}: RunQueryButtonProps) =>
loading ? (
<Button onClick={onStop} buttonStyle="warning" disabled={!canStopQuery}>
<i className="fa fa-stop-circle-o" /> {t('Stop')}
<i className="fa fa-stop" /> {t('Stop')}
</Button>
) : (
<Button
Expand Down

0 comments on commit 93062b2

Please sign in to comment.