aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/CollectionStackingViewFieldColumn.tsx
diff options
context:
space:
mode:
authorfawn <fangrui_tong@brown.edu>2019-07-30 13:15:19 -0400
committerfawn <fangrui_tong@brown.edu>2019-07-30 13:15:19 -0400
commit49355364b418ceb8f04ee79132dedc5885a9bbe5 (patch)
treed81c8d3e9674179d0965f8b14097210e5da63d5f /src/client/views/collections/CollectionStackingViewFieldColumn.tsx
parent1d8c80a366c743479a8eb1c8c21ecad21942da73 (diff)
schema column widths get saved
Diffstat (limited to 'src/client/views/collections/CollectionStackingViewFieldColumn.tsx')
-rw-r--r--src/client/views/collections/CollectionStackingViewFieldColumn.tsx1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionStackingViewFieldColumn.tsx b/src/client/views/collections/CollectionStackingViewFieldColumn.tsx
index 6edfe55e5..01938a3b4 100644
--- a/src/client/views/collections/CollectionStackingViewFieldColumn.tsx
+++ b/src/client/views/collections/CollectionStackingViewFieldColumn.tsx
@@ -187,7 +187,6 @@ export class CollectionStackingViewFieldColumn extends React.Component<CSVFieldC
startDrag = (e: PointerEvent) => {
let [dx, dy] = this.props.screenToLocalTransform().transformDirection(e.clientX - this._startDragPosition.x, e.clientY - this._startDragPosition.y);
if (Math.abs(dx) + Math.abs(dy) > this._sensitivity) {
- console.log("start stack drag");
let alias = Doc.MakeAlias(this.props.parent.props.Document);
let key = StrCast(this.props.parent.props.Document.sectionFilter);
let value = this.getValue(this._heading);