@monoui/vuejs 1.1.83 → 1.1.84
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/dist/main.js +2 -2
- package/package.json +1 -1
- package/src/components/Table/Table.vue +2 -2
package/package.json
CHANGED
|
@@ -720,14 +720,14 @@ export default {
|
|
|
720
720
|
this.$set(this.filters, existingIndex, {
|
|
721
721
|
Column: this.finalTimeFrame.column,
|
|
722
722
|
Value: this.calculateStartDate(opt),
|
|
723
|
-
Operator: 5
|
|
723
|
+
Operator: this.finalTimeFrame.operator || 5
|
|
724
724
|
});
|
|
725
725
|
} else {
|
|
726
726
|
// Add new filter
|
|
727
727
|
this.filters.push({
|
|
728
728
|
Column: this.finalTimeFrame.column,
|
|
729
729
|
Value: this.calculateStartDate(opt),
|
|
730
|
-
Operator: 5
|
|
730
|
+
Operator: this.finalTimeFrame.operator || 5
|
|
731
731
|
});
|
|
732
732
|
}
|
|
733
733
|
}
|