When we have a large enough annotation payload (annotationResults was 10.5 MB for me) we exceed the browser's storage quota and the results can't be saved, interrupting the workflow with an unclear log in he browser console.
To fix this, do we want keep large results on the server? Or use some sort of db manager for frontend?
|
results.value = response.data |
|
localStorage.setItem('annotationResults', JSON.stringify(response.data)) |
When we have a large enough annotation payload (annotationResults was 10.5 MB for me) we exceed the browser's storage quota and the results can't be saved, interrupting the workflow with an unclear log in he browser console.
To fix this, do we want keep large results on the server? Or use some sort of db manager for frontend?
biodatafuseUI/vue-app/src/views/DataSourceView.vue
Lines 299 to 300 in 4333815