@monoui/vuejs 1.1.82 → 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 +3 -3
package/package.json
CHANGED
|
@@ -330,7 +330,7 @@
|
|
|
330
330
|
class="ml-2 mr-2"
|
|
331
331
|
@click="refresh"
|
|
332
332
|
>
|
|
333
|
-
<i class="fas fa-sync"></i>
|
|
333
|
+
<i class="fas fa-sync mr-1"></i>
|
|
334
334
|
Refresh
|
|
335
335
|
<span v-show="settings.totalItemCount">
|
|
336
336
|
| {{ settings.totalItemCount }} Rows
|
|
@@ -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
|
}
|