summaryrefslogtreecommitdiff
path: root/src/views/_sila/Overview/Inventory/Inventory.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/views/_sila/Overview/Inventory/Inventory.vue')
-rw-r--r--src/views/_sila/Overview/Inventory/Inventory.vue16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/views/_sila/Overview/Inventory/Inventory.vue b/src/views/_sila/Overview/Inventory/Inventory.vue
index 3bf9433f..cf909423 100644
--- a/src/views/_sila/Overview/Inventory/Inventory.vue
+++ b/src/views/_sila/Overview/Inventory/Inventory.vue
@@ -44,7 +44,7 @@
<table-processors ref="processors" class="inventory-scroll" />
<!-- Assembly table -->
- <table-assembly ref="assembly" class="inventory-scroll" />
+ <pci-devices ref="pci" class="inventory-scroll" />
</b-container>
</template>
@@ -58,7 +58,7 @@ import TableFans from './InventoryTableFans';
import TableBmcManager from './InventoryTableBmcManager';
import TableChassis from './InventoryTableChassis';
import TableProcessors from './InventoryTableProcessors';
-import TableAssembly from './InventoryTableAssembly';
+import PciDevices from './InventoryPciDevices';
import LoadingBarMixin from '@/components/_sila/Mixins/LoadingBarMixin';
import PageSection from '@/components/_sila/Global/PageSection';
import JumpLinkMixin from '@/components/_sila/Mixins/JumpLinkMixin';
@@ -75,7 +75,7 @@ export default {
TableBmcManager,
TableChassis,
TableProcessors,
- TableAssembly,
+ PciDevices,
PageSection,
},
mixins: [LoadingBarMixin, JumpLinkMixin],
@@ -131,10 +131,10 @@ export default {
linkText: this.$t('pageInventory.processors'),
},
{
- id: 'assembly',
- dataRef: 'assembly',
- href: '#assembly',
- linkText: this.$t('pageInventory.assemblies'),
+ id: 'pci',
+ dataRef: 'pci',
+ href: '#pci',
+ linkText: this.$t('pageInventory.pci'),
},
],
};
@@ -174,7 +174,7 @@ export default {
this.$root.$on('hardware-status-system-complete', () => resolve());
});
const assemblyTablePromise = new Promise((resolve) => {
- this.$root.$on('hardware-status-assembly-complete', () => resolve());
+ this.$root.$on('hardware-status-pci-complete', () => resolve());
});
// Combine all child component Promises to indicate
// when page data load complete