Fix variable name in DataAdb

A typo in a variable name caused the exception handling to fail.

Bug:
Test: yarn run dev
Change-Id: Id02495fe323bbb7f6ccbb973fbe6091a3d518523
This commit is contained in:
Adam Pardyl
2019-08-09 16:53:39 +02:00
parent 211f5b4dc3
commit 86e5673cdb

View File

@@ -228,7 +228,7 @@ export default {
view.$emit('dataReady', view.dataFiles);
}
} catch (err) {
view.errorText = ex;
view.errorText = err;
view.status = STATES.ERROR;
}
}, "arraybuffer")