@deephaven/iris-grid 1.15.1 → 1.15.2-alpha-fetch-variable-def.0

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/IrisGrid.js CHANGED
@@ -2204,11 +2204,11 @@ class IrisGrid extends Component {
2204
2204
  model
2205
2205
  } = this.props;
2206
2206
  var {
2207
- name,
2208
- type
2207
+ name
2209
2208
  } = model.columns[cursorColumn];
2210
- var cellValue = model.valueForCell(cursorColumn, cursorRow);
2211
- var text = IrisGridUtils.convertValueToText(cellValue, type);
2209
+
2210
+ // Use raw value (same as Copy Cell Unformatted) to preserve full precision and timezone
2211
+ var text = String(this.getValueForCell(cursorColumn, cursorRow, true));
2212
2212
  this.setState({
2213
2213
  isGotoShown: !isGotoShown,
2214
2214
  gotoRow: "".concat(cursorRow + 1),