@milaboratories/pl-middle-layer 1.41.0 → 1.41.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -5493,11 +5493,7 @@ class rl {
5493
5493
  a.setDataSource(this);
5494
5494
  const c = [];
5495
5495
  for (const l of o)
5496
- a.addColumnSpec(l.id, l.spec), c.push(Promise.resolve(a.setColumnData(
5497
- l.id,
5498
- l.data
5499
- /* , this.disposeSignal */
5500
- )));
5496
+ a.addColumnSpec(l.id, l.spec), c.push(a.setColumnData(l.id, l.data, { signal: this.disposeSignal }));
5501
5497
  this.pFramePromise = Promise.all(c).then(() => a).catch((l) => {
5502
5498
  throw this.dispose(), a.dispose(), new fe(
5503
5499
  `PFrame creation failed asynchronously, columns: ${JSON.stringify(o)}, error: ${it(l)}`