feat(sqllab): giving the query history pane a facelift (#31316)

This commit is contained in:
Maxime Beauchemin
2024-12-12 15:30:50 -08:00
committed by GitHub
parent 988da2c477
commit 4ff9aac1fa
5 changed files with 121 additions and 55 deletions

View File

@@ -421,9 +421,7 @@ export function postStopQuery(query) {
})
.then(() => dispatch(stopQuery(query)))
.then(() => dispatch(addSuccessToast(t('Query was stopped.'))))
.catch(() =>
dispatch(addDangerToast(t('Failed at stopping query. %s', query.id))),
);
.catch(() => dispatch(addDangerToast(t('Failed to stop query.'))));
};
}