summaryrefslogtreecommitdiff
path: root/src/views/HardwareStatus/Inventory/InventoryTableDimmSlot.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/views/HardwareStatus/Inventory/InventoryTableDimmSlot.vue')
-rw-r--r--src/views/HardwareStatus/Inventory/InventoryTableDimmSlot.vue14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/views/HardwareStatus/Inventory/InventoryTableDimmSlot.vue b/src/views/HardwareStatus/Inventory/InventoryTableDimmSlot.vue
index ed370b53..5d8db83c 100644
--- a/src/views/HardwareStatus/Inventory/InventoryTableDimmSlot.vue
+++ b/src/views/HardwareStatus/Inventory/InventoryTableDimmSlot.vue
@@ -57,7 +57,7 @@
<dl>
<!-- Status state -->
<dt>{{ $t('pageInventory.table.statusState') }}:</dt>
- <dd>{{ tableFormatter(item.statusState) }}</dd>
+ <dd>{{ dataFormatter(item.statusState) }}</dd>
</dl>
</b-col>
</b-row>
@@ -74,7 +74,7 @@ import IconChevron from '@carbon/icons-vue/es/chevron--down/20';
import StatusIcon from '@/components/Global/StatusIcon';
import TableCellCount from '@/components/Global/TableCellCount';
-import TableDataFormatterMixin from '@/components/Mixins/TableDataFormatterMixin';
+import DataFormatterMixin from '@/components/Mixins/DataFormatterMixin';
import TableSortMixin from '@/components/Mixins/TableSortMixin';
import Search from '@/components/Global/Search';
import SearchFilterMixin, {
@@ -88,7 +88,7 @@ export default {
components: { IconChevron, PageSection, StatusIcon, Search, TableCellCount },
mixins: [
TableRowExpandMixin,
- TableDataFormatterMixin,
+ DataFormatterMixin,
TableSortMixin,
SearchFilterMixin,
],
@@ -104,26 +104,26 @@ export default {
{
key: 'id',
label: this.$t('pageInventory.table.id'),
- formatter: this.tableFormatter,
+ formatter: this.dataFormatter,
sortable: true,
},
{
key: 'health',
label: this.$t('pageInventory.table.health'),
- formatter: this.tableFormatter,
+ formatter: this.dataFormatter,
sortable: true,
tdClass: 'text-nowrap',
},
{
key: 'partNumber',
label: this.$t('pageInventory.table.partNumber'),
- formatter: this.tableFormatter,
+ formatter: this.dataFormatter,
sortable: true,
},
{
key: 'serialNumber',
label: this.$t('pageInventory.table.serialNumber'),
- formatter: this.tableFormatter,
+ formatter: this.dataFormatter,
sortable: true,
},
],