This commit is contained in:
Jan Prochazka
2022-04-28 14:02:20 +02:00
parent cd8698fac9
commit 97c2dcbaf6
2 changed files with 6 additions and 0 deletions

View File

@@ -28,6 +28,11 @@
errorMessage = null;
isLoading = true;
const resp = await apiCall('runners/load-reader', sourceReader);
if (resp.errorMessage) {
isLoading = false;
errorMessage = resp.errorMessage;
return;
}
// @ts-ignore
model = resp;
grider = new RowsArrayGrider(resp.rows);