@cubejs-client/vue3 0.34.37 → 0.34.60

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.
@@ -10066,8 +10066,10 @@
10066
10066
 
10067
10067
  if (id === 'measures') {
10068
10068
  destinationIndex = lastIndex + 1;
10069
- } else if (destinationIndex >= lastIndex && nextPivotConfig[destinationAxis][lastIndex] === 'measures') {
10069
+ } else if (sourceAxis === destinationAxis && destinationIndex >= lastIndex && nextPivotConfig[destinationAxis][lastIndex] === 'measures') {
10070
10070
  destinationIndex = lastIndex - 1;
10071
+ } else if (sourceAxis !== destinationAxis && destinationIndex > lastIndex && nextPivotConfig[destinationAxis][lastIndex] === 'measures') {
10072
+ destinationIndex = lastIndex;
10071
10073
  }
10072
10074
 
10073
10075
  nextPivotConfig[sourceAxis].splice(sourceIndex, 1);