summaryrefslogtreecommitdiff
path: root/src/views/HardwareStatus/Sensors/Sensors.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/views/HardwareStatus/Sensors/Sensors.vue')
-rw-r--r--src/views/HardwareStatus/Sensors/Sensors.vue14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/views/HardwareStatus/Sensors/Sensors.vue b/src/views/HardwareStatus/Sensors/Sensors.vue
index c69532a6..15cecfff 100644
--- a/src/views/HardwareStatus/Sensors/Sensors.vue
+++ b/src/views/HardwareStatus/Sensors/Sensors.vue
@@ -115,7 +115,7 @@ import BVTableSelectableMixin, {
} from '@/components/Mixins/BVTableSelectableMixin';
import LoadingBarMixin from '@/components/Mixins/LoadingBarMixin';
import TableFilterMixin from '@/components/Mixins/TableFilterMixin';
-import TableDataFormatterMixin from '@/components/Mixins/TableDataFormatterMixin';
+import DataFormatterMixin from '@/components/Mixins/DataFormatterMixin';
import TableSortMixin from '@/components/Mixins/TableSortMixin';
import SearchFilterMixin, {
searchFilter,
@@ -136,7 +136,7 @@ export default {
TableFilterMixin,
BVTableSelectableMixin,
LoadingBarMixin,
- TableDataFormatterMixin,
+ DataFormatterMixin,
TableSortMixin,
SearchFilterMixin,
],
@@ -165,28 +165,28 @@ export default {
},
{
key: 'lowerCritical',
- formatter: this.tableFormatter,
+ formatter: this.dataFormatter,
label: this.$t('pageSensors.table.lowerCritical'),
},
{
key: 'lowerCaution',
- formatter: this.tableFormatter,
+ formatter: this.dataFormatter,
label: this.$t('pageSensors.table.lowerWarning'),
},
{
key: 'currentValue',
- formatter: this.tableFormatter,
+ formatter: this.dataFormatter,
label: this.$t('pageSensors.table.currentValue'),
},
{
key: 'upperCaution',
- formatter: this.tableFormatter,
+ formatter: this.dataFormatter,
label: this.$t('pageSensors.table.upperWarning'),
},
{
key: 'upperCritical',
- formatter: this.tableFormatter,
+ formatter: this.dataFormatter,
label: this.$t('pageSensors.table.upperCritical'),
},
],