summaryrefslogtreecommitdiff
path: root/src/views/HardwareStatus/Inventory/Inventory.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/views/HardwareStatus/Inventory/Inventory.vue')
-rw-r--r--src/views/HardwareStatus/Inventory/Inventory.vue15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/views/HardwareStatus/Inventory/Inventory.vue b/src/views/HardwareStatus/Inventory/Inventory.vue
index 132002fe..0e97f711 100644
--- a/src/views/HardwareStatus/Inventory/Inventory.vue
+++ b/src/views/HardwareStatus/Inventory/Inventory.vue
@@ -1,20 +1,23 @@
<template>
- <b-container fluid="xxl pt-0 m-2">
+ <b-container fluid class="p-0 m-0">
<page-title />
<!-- Service indicators -->
<service-indicator />
<!-- Quicklinks section -->
- <page-section :section-title="$t('pageInventory.quicklinkTitle')">
- <b-row class="w-75">
- <b-col v-for="column in quicklinkColumns" :key="column.id" xl="4">
+ <page-section
+ class="bootstrap-table__section"
+ :section-small-title="$t('pageInventory.quicklinkTitle')"
+ >
+ <b-row>
+ <b-col v-for="column in quicklinkColumns" :key="column.id">
<div v-for="item in column" :key="item.id">
<b-link
:href="item.href"
:data-ref="item.dataRef"
@click.prevent="scrollToOffset"
>
- <jump-link /> {{ item.linkText }}
+ {{ item.linkText }}
</b-link>
</div>
</b-col>
@@ -60,7 +63,6 @@ import TableProcessors from './InventoryTableProcessors';
import TableAssembly from './InventoryTableAssembly';
import LoadingBarMixin from '@/components/Mixins/LoadingBarMixin';
import PageSection from '@/components/Global/PageSection';
-import JumpLink16 from '@carbon/icons-vue/es/jump-link/16';
import JumpLinkMixin from '@/components/Mixins/JumpLinkMixin';
import { chunk } from 'lodash';
@@ -77,7 +79,6 @@ export default {
TableProcessors,
TableAssembly,
PageSection,
- JumpLink: JumpLink16,
},
mixins: [LoadingBarMixin, JumpLinkMixin],
beforeRouteLeave(to, from, next) {