@bizdoc/core 1.11.0-next.10 → 1.11.0-next.11

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.
@@ -13964,7 +13964,7 @@ class TraceViewComponent extends TraceBase {
13964
13964
  }
13965
13965
  trace.push(step);
13966
13966
  }
13967
- this._data = trace;
13967
+ this._data = trace.sort((a, b) => a.time > b.time ? 1 : a.time === b.time ? 0 : -1);
13968
13968
  this._filter();
13969
13969
  }
13970
13970
  _filter() {