Skip to content

Commit

Permalink
Merge branch 'full-pipeline-puppeteer' of https://github.com/Neurodat…
Browse files Browse the repository at this point in the history
…aWithoutBorders/nwb-guide into full-pipeline-puppeteer
  • Loading branch information
garrettmflynn committed May 13, 2024
2 parents 676781d + 45563e7 commit 072f54d
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/renderer/src/stories/SimpleTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -743,12 +743,11 @@ export class SimpleTable extends LitElement {
if (latest) latest.insertAdjacentElement("afterend", newRow);
else bodyEl.append(newRow);
});

setTimeout(() => {
this.#onUpdate([], this.data)
this.#onUpdate([], this.data);
resolve();
}, 50) // Wait for table to update asynchronously

}, 50); // Wait for table to update asynchronously
} else {
this.#onUpdate([], this.data);
resolve();
Expand Down

0 comments on commit 072f54d

Please sign in to comment.