File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -856,7 +856,7 @@ export default class SyncProcess {
856856
857857 if ( targetLocation !== this . masterLocation ) {
858858 const concurrentReorder = targetReorders . find ( a =>
859- action . payload . type === a . payload . type && Mappings . mappable ( mappingsSnapshot , action . payload , a . payload ) )
859+ action . payload . type === a . payload . type && Mappings . mappable ( mappingsSnapshot , action . payload , a . payload ) && a . order . length > 0 )
860860 if ( concurrentReorder ) {
861861 return
862862 }
Original file line number Diff line number Diff line change @@ -194,7 +194,7 @@ export default class MergeSyncProcess extends DefaultSyncProcess {
194194
195195 if ( targetLocation !== this . masterLocation ) {
196196 const concurrentReorder = targetReorders . find ( a =>
197- action . payload . type === a . payload . type && Mappings . mappable ( mappingsSnapshot , action . payload , a . payload ) )
197+ action . payload . type === a . payload . type && Mappings . mappable ( mappingsSnapshot , action . payload , a . payload ) && a . order . length > 0 )
198198 if ( concurrentReorder ) {
199199 return
200200 }
You can’t perform that action at this time.
0 commit comments