@mixd-id/web-scaffold 0.1.230406285 → 0.1.230406287
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.
- package/package.json +1 -1
- package/src/components/List.vue +7 -1
package/package.json
CHANGED
package/src/components/List.vue
CHANGED
|
@@ -619,6 +619,10 @@ export default{
|
|
|
619
619
|
},
|
|
620
620
|
|
|
621
621
|
onSignal(event, items){
|
|
622
|
+
if(this.pivotEnabled){
|
|
623
|
+
console.log('no background update due ti pivot')
|
|
624
|
+
return
|
|
625
|
+
}
|
|
622
626
|
|
|
623
627
|
switch(event){
|
|
624
628
|
|
|
@@ -659,7 +663,9 @@ export default{
|
|
|
659
663
|
})
|
|
660
664
|
}
|
|
661
665
|
|
|
662
|
-
|
|
666
|
+
let [ kk, ...vv ] = column.key.split('-')
|
|
667
|
+
vv = vv.join('-')
|
|
668
|
+
|
|
663
669
|
if(![ 'count' ].includes(vv)){
|
|
664
670
|
filters.push({
|
|
665
671
|
key: kk.substring(1),
|