diff options
author | Maksim Zakharov <m.zakharov@IBS.RU> | 2022-05-24 10:04:19 +0300 |
---|---|---|
committer | Maksim Zakharov <m.zakharov@IBS.RU> | 2022-05-24 10:04:19 +0300 |
commit | c4d70da69a3c86f8c07ccdb0f09b755dd99b2155 (patch) | |
tree | fb8579325d609699395e9550eaa803222a321fd6 /src/views/MemoryModules/Specification/MemoryStaticPage.vue | |
parent | 6facd12596ec8b55bab4be04b473de65e1f22018 (diff) | |
download | webui-vue-c4d70da69a3c86f8c07ccdb0f09b755dd99b2155.tar.xz |
Add global popovers. Add pages: pci, adapters, raid, drivers, virtual drivers. Fix: analytical pannel, bmc-settings popovers. fix global styles
Diffstat (limited to 'src/views/MemoryModules/Specification/MemoryStaticPage.vue')
-rw-r--r-- | src/views/MemoryModules/Specification/MemoryStaticPage.vue | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/views/MemoryModules/Specification/MemoryStaticPage.vue b/src/views/MemoryModules/Specification/MemoryStaticPage.vue index 09ef7f239..a40bd2ea3 100644 --- a/src/views/MemoryModules/Specification/MemoryStaticPage.vue +++ b/src/views/MemoryModules/Specification/MemoryStaticPage.vue @@ -18,10 +18,12 @@ </b-table> <span class="bold-16px">{{ $t('global.table.memorySlots') }}</span> </page-section> - <memory-switch + <data-tabs :slots="memorySlots" - :switch-memory="switchMemorySlot" - :current-memory="currentMemorySlot" + :switch-tab="switchMemorySlot" + :current-tab="currentMemorySlot" + :slot-width="120" + :slider-width="97" /> <page-section class="bootstrap-table__section"> <b-table @@ -93,10 +95,10 @@ <script> import PageTitle from '@/components/Global/PageTitle'; import PageSection from '@/components/Global/PageSection'; -import MemorySwitch from './MemorySwitch'; +import DataTabs from '@/components/Global/SilaComponents/DataTabs'; export default { - components: { PageTitle, PageSection, MemorySwitch }, + components: { PageTitle, PageSection, DataTabs }, data() { return { currentMemorySlot: 1, |