Skip to content

Commit

Permalink
BUGFIX: Don’t show previous result message while reloading results
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebobo committed Sep 17, 2024
1 parent 6e97394 commit 0e9d32a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const CommandResultsView: React.FC = () => {

return (
<div className={styles.commandResultsView}>
{message && <h6 className={styles.message}>{message}</h6>}
{!isLoading && message && <h6 className={styles.message}>{message}</h6>}
{isLoading ? <div>{translate('CommandResultsView.waitingForResults', 'Waiting for results…')}</div> : ''}
{!isLoading && view ? <div>{view}</div> : ''}
{!isLoading && options && (
Expand Down

0 comments on commit 0e9d32a

Please sign in to comment.