From 97643ebee7eea144cbe6d4968c3c6a1ad8c328f1 Mon Sep 17 00:00:00 2001 From: Stefan Dej Date: Tue, 3 Oct 2023 22:53:50 +0200 Subject: [PATCH] fix: change margin bottom when timelapse exists Signed-off-by: Stefan Dej --- src/components/dialogs/StartPrintDialogSpoolman.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/dialogs/StartPrintDialogSpoolman.vue b/src/components/dialogs/StartPrintDialogSpoolman.vue index b2f241f68..469415a98 100644 --- a/src/components/dialogs/StartPrintDialogSpoolman.vue +++ b/src/components/dialogs/StartPrintDialogSpoolman.vue @@ -49,7 +49,7 @@ export default class StartPrintDialogSpoolman extends Mixins(BaseMixin) { get classSecondDivider() { const classes = ['mt-4'] - classes.push(this.moonrakerComponents.includes('spoolman') ? 'mb-2' : 'mb-0') + classes.push(this.moonrakerComponents.includes('timelapse') ? 'mb-2' : 'mb-0') return classes }