summaryrefslogtreecommitdiff
path: root/src/views/HardwareStatus/Inventory/Inventory.vue
diff options
context:
space:
mode:
authorAnna Tsyganova <ATSyganova@IBS.RU>2022-06-10 10:08:22 +0300
committerAnna Tsyganova <ATSyganova@IBS.RU>2022-06-10 10:08:22 +0300
commit58d1eb3b899b730877299be6635adceb127fe6a9 (patch)
tree22d26261d8193e6489a559f1a50cd0d4d4c811a1 /src/views/HardwareStatus/Inventory/Inventory.vue
parentd6d339de0078789cdef367f96c4ea3580e6257e7 (diff)
downloadwebui-vue-58d1eb3b899b730877299be6635adceb127fe6a9.tar.xz
Fix inventory page
Id task: SILABMC-155
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) {