console: throw an error when tracking fails on RawSQL page

close https://github.com/hasura/graphql-engine/issues/6628

GitOrigin-RevId: 5efd01197518df7963b5fca6b37610350fc921dc
This commit is contained in:
Vijay Prasanna 2021-03-18 13:44:03 +05:30 committed by hasura-bot
parent e56e606ddb
commit d93cd78999

View File

@ -90,6 +90,7 @@ const trackAllItems = (sql, isMigration, migrationName, source, driver) => (
},
err => {
dispatch(showErrorNotification('Tracking items failed', err.code, err));
throw new Error(err);
}
);
};