@barchart/portfolio-api-common 1.0.186 → 1.0.187

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.
@@ -248,7 +248,7 @@ module.exports = (() => {
248
248
  addSummaryPrevious(this._summariesPrevious, summary, this._previousSummaryFrame, this._previousSummaryRanges);
249
249
  });
250
250
 
251
- const item = createPositionItem(position);
251
+ const item = createPositionItem.call(this, position);
252
252
 
253
253
  addBarchartSymbol(this._symbols, item);
254
254
  addDisplaySymbol(this._symbolsDisplay, item);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@barchart/portfolio-api-common",
3
- "version": "1.0.186",
3
+ "version": "1.0.187",
4
4
  "description": "Common classes used by the Portfolio system",
5
5
  "author": {
6
6
  "name": "Bryan Ingle",
@@ -964,7 +964,7 @@ module.exports = (() => {
964
964
  addSummaryPrevious(this._summariesPrevious, summary, this._previousSummaryFrame, this._previousSummaryRanges);
965
965
  });
966
966
 
967
- const item = createPositionItem(position);
967
+ const item = createPositionItem.call(this, position);
968
968
 
969
969
  addBarchartSymbol(this._symbols, item);
970
970
  addDisplaySymbol(this._symbolsDisplay, item);