From 939e9a86a5069d48cac535e37172c2aae89ae257 Mon Sep 17 00:00:00 2001 From: Craig Bassett Date: Fri, 18 Dec 2020 21:51:39 -0600 Subject: [PATCH] feat: add download log buttons to configuration page --- .../cards/configuration/LogsCard.vue | 26 +++++++++++++++++++ src/views/Configuration.vue | 13 ++++++---- 2 files changed, 34 insertions(+), 5 deletions(-) create mode 100644 src/components/cards/configuration/LogsCard.vue diff --git a/src/components/cards/configuration/LogsCard.vue b/src/components/cards/configuration/LogsCard.vue new file mode 100644 index 0000000000..b35e1aaed3 --- /dev/null +++ b/src/components/cards/configuration/LogsCard.vue @@ -0,0 +1,26 @@ + + + diff --git a/src/views/Configuration.vue b/src/views/Configuration.vue index b6e1c35801..d4db14fadd 100644 --- a/src/views/Configuration.vue +++ b/src/views/Configuration.vue @@ -4,12 +4,13 @@ - + - + - - + + + @@ -36,6 +37,7 @@ import RunoutSensorsCard from '@/components/cards/configuration/RunoutSensorsCar import FileSystemCard from '@/components/cards/FileSystemCard.vue' import KlippyDisconnectedCard from '@/components/cards/KlippyDisconnectedCard.vue' import BedMeshCard from '@/components/cards/configuration/BedMeshCard.vue' +import LogsCard from '@/components/cards/configuration/LogsCard.vue' const BedMeshWidget = () => import(/* webpackChunkName: "bedmesh", webpackPrefetch: true */ '@/components/widgets/configuration/BedMeshWidget.vue') @@ -46,7 +48,8 @@ const BedMeshWidget = () => import(/* webpackChunkName: "bedmesh", webpackPrefet EndStopsCard, RunoutSensorsCard, FileSystemCard, - KlippyDisconnectedCard + KlippyDisconnectedCard, + LogsCard } }) export default class Configuration extends Mixins(UtilsMixin) {