From 1e1bde296031721a9ec166905dad0b460722cdd2 Mon Sep 17 00:00:00 2001 From: Peter Olu Date: Sat, 9 Jul 2022 12:00:37 -0700 Subject: [PATCH] replaced tool component --- src/views/dashboard/Edit.vue | 11 +- src/views/dashboard/Scroll.vue | 3 +- src/views/dashboard/panel/JbTool.vue | 776 +++++++++++++++++++++++++++ src/views/dashboard/panel/Tool.vue | 5 +- 4 files changed, 786 insertions(+), 9 deletions(-) create mode 100644 src/views/dashboard/panel/JbTool.vue diff --git a/src/views/dashboard/Edit.vue b/src/views/dashboard/Edit.vue index f8a3da76..2d23ca07 100644 --- a/src/views/dashboard/Edit.vue +++ b/src/views/dashboard/Edit.vue @@ -37,7 +37,7 @@ import { ref, defineComponent } from "vue"; import { useI18n } from "vue-i18n"; import { useRoute } from "vue-router"; import GridLayout from "./panel/Layout.vue"; -import Tool from "./panel/Tool.vue"; +import Tool from "./panel/JbTool.vue"; import { useDashboardStore } from "@/store/modules/dashboard"; import { useAppStoreWithOut } from "@/store/modules/app"; import Configuration from "./configuration"; @@ -97,12 +97,11 @@ export default defineComponent({ diff --git a/src/views/dashboard/Scroll.vue b/src/views/dashboard/Scroll.vue index 723f00fa..6445b783 100644 --- a/src/views/dashboard/Scroll.vue +++ b/src/views/dashboard/Scroll.vue @@ -37,7 +37,7 @@ import { ref, defineComponent } from "vue"; import { useI18n } from "vue-i18n"; import { useRoute } from "vue-router"; import GridLayout from "./panel/Layout.vue"; -import Tool from "./panel/Tool.vue"; +import Tool from "./panel/JbTool.vue"; import { useDashboardStore } from "@/store/modules/dashboard"; import { useAppStoreWithOut } from "@/store/modules/app"; import Configuration from "./configuration"; @@ -95,6 +95,7 @@ export default defineComponent({ .ds-main { overflow: auto; } + .full-view__scroll { height: 60vh; width: 100%; diff --git a/src/views/dashboard/panel/JbTool.vue b/src/views/dashboard/panel/JbTool.vue new file mode 100644 index 00000000..ea91a80c --- /dev/null +++ b/src/views/dashboard/panel/JbTool.vue @@ -0,0 +1,776 @@ + + + + + + diff --git a/src/views/dashboard/panel/Tool.vue b/src/views/dashboard/panel/Tool.vue index 6ca57861..671aa0e8 100644 --- a/src/views/dashboard/panel/Tool.vue +++ b/src/views/dashboard/panel/Tool.vue @@ -183,7 +183,7 @@ limitations under the License. -->