summaryrefslogtreecommitdiff
path: root/src/views/Control/Kvm/Kvm.vue
diff options
context:
space:
mode:
authorMateusz Gapski <mateuszx.gapski@intel.com>2020-09-04 15:11:55 +0300
committerDerick Montague <derick.montague@ibm.com>2020-09-29 23:23:15 +0300
commit96b37af1433f635fc6bb107961a352721a720326 (patch)
tree594d8845e6f27b8e3022ad59c0eba77dd1e2bf3e /src/views/Control/Kvm/Kvm.vue
parent4c7c5af894fdc5db46cda1a02e37777dfd0831e5 (diff)
downloadwebui-vue-96b37af1433f635fc6bb107961a352721a720326.tar.xz
Fix responsiveness of KVM
More info: https://github.com/openbmc/webui-vue/issues/24 Signed-off-by: Mateusz Gapski <mateuszx.gapski@intel.com> Change-Id: I150e7816ea08f462300566276ddbfc117e9f2e0c
Diffstat (limited to 'src/views/Control/Kvm/Kvm.vue')
-rw-r--r--src/views/Control/Kvm/Kvm.vue33
1 files changed, 4 insertions, 29 deletions
diff --git a/src/views/Control/Kvm/Kvm.vue b/src/views/Control/Kvm/Kvm.vue
index 195948b0..66b2e5f7 100644
--- a/src/views/Control/Kvm/Kvm.vue
+++ b/src/views/Control/Kvm/Kvm.vue
@@ -1,44 +1,19 @@
<template>
<b-container fluid="xl">
<page-title />
-
- <page-section :section-title="$t('pageKvm.subTitle')">
- <div>
- <b-button
- variant="link"
- type="button"
- class="button-launch"
- @click="openConsoleWindow()"
- >
- <icon-launch />
- {{ $t('pageKvm.openNewTab') }}
- </b-button>
- </div>
- <div class="terminal-container">
- <kvm-console />
- </div>
- </page-section>
+ <div class="terminal-container">
+ <kvm-console :is-full-window="false" />
+ </div>
</b-container>
</template>
<script>
-import IconLaunch from '@carbon/icons-vue/es/launch/32';
import PageTitle from '@/components/Global/PageTitle';
-import PageSection from '@/components/Global/PageSection';
import KvmConsole from './KvmConsole';
export default {
name: 'Kvm',
- components: { IconLaunch, PageSection, PageTitle, KvmConsole },
- methods: {
- openConsoleWindow() {
- window.open(
- '#/console/kvm',
- '_blank',
- 'directories=no,titlebar=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=600,height=550'
- );
- }
- }
+ components: { PageTitle, KvmConsole }
};
</script>