File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 55* Data.WeakBag.traverse and Data.FastWeakBag.traverse have been
66 renamed to Data.WeakBag.traverse_ and Data.FastWeakBag.traverse_
77 respectively.
8+ * Fixes a bug in ` Reflex.Patch.MapWithMove.patchThatSortsMapWith ` that was producing invalid ` PatchMapWithMove ` .
89* Additional instances for ` Group ` and ` Query ` classes for basic types.
910
1011## 0.6.2.4
Original file line number Diff line number Diff line change @@ -155,7 +155,7 @@ patchThatSortsMapWith cmp m = PatchMapWithMove $ Map.fromList $ catMaybes $ zipW
155155 Just (from, to)
156156 reverseMapping = Map. fromList $ catMaybes $ zipWith f unsorted sorted
157157 g (to, _) (from, _) = if to == from then Nothing else
158- let Just movingTo = Map. lookup from reverseMapping
158+ let Just movingTo = Map. lookup to reverseMapping
159159 in Just (to, NodeInfo (From_Move from) $ Just movingTo)
160160
161161-- | Create a 'PatchMapWithMove' that, if applied to the first 'Map' provided,
You can’t perform that action at this time.
0 commit comments