Skip to content

Commit

Permalink
Showing progress report but:
Browse files Browse the repository at this point in the history
* The UI shows the job as still in progress even after the importing is done.
  This is because (?) we don't have a `jobsManager.done(job)` in packages/jbrowse-plugin-apollo/src/session/ClientDataStore.ts

* We should show how far we are from completing the file import.
  • Loading branch information
dariober committed Nov 19, 2024
1 parent 9cf7e4d commit 20313b7
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,8 @@ export async function loadOboGraphJson(this: OntologyStore, db: Database) {

// record some metadata about this ontology and load operation
const tx2 = db.transaction('meta', 'readwrite')
const { update, ...otherOptions } = this.options
const { ...otherOptions } = this.options
otherOptions.update = undefined
await tx2.objectStore('meta').add(
{
ontologyRecord: {
Expand Down

0 comments on commit 20313b7

Please sign in to comment.