aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2021-09-26 03:18:41 -0400
committerbobzel <zzzman@gmail.com>2021-09-26 03:18:41 -0400
commit85f5f3824b8e815350f1f83c81a53cafd8a26b9e (patch)
treea7e7e3f05d4bd4134ee4da56bad039d57c58a717 /src/client/views/collections
parenta793b7e981e46b7c98bee6cce3faaf3a5b05f6ae (diff)
fixed bug with SetInPlace for fields starting with "_"
Diffstat (limited to 'src/client/views/collections')
-rw-r--r--src/client/views/collections/CollectionStackedTimeline.tsx1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/views/collections/CollectionStackedTimeline.tsx b/src/client/views/collections/CollectionStackedTimeline.tsx
index e1e2990a0..16401bf01 100644
--- a/src/client/views/collections/CollectionStackedTimeline.tsx
+++ b/src/client/views/collections/CollectionStackedTimeline.tsx
@@ -760,6 +760,7 @@ class StackedTimelineAnchor extends React.Component<StackedTimelineAnchorProps>
e,
(e) => {
if (!undo) undo = UndoManager.StartBatch("drag anchor");
+ this.props.setTime(newTime(e));
return changeAnchor(anchor, left, newTime(e));
},
(e) => {