From 9db98302c84df90a75d1dfcd0f0f966606ce65b1 Mon Sep 17 00:00:00 2001 From: Stefan Dej Date: Sun, 2 Feb 2025 16:24:42 +0100 Subject: [PATCH] fix(Timelapse): fix count per page switch in the Timelapse Files Panel (#2134) --- src/components/panels/Timelapse/TimelapseFilesPanel.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/panels/Timelapse/TimelapseFilesPanel.vue b/src/components/panels/Timelapse/TimelapseFilesPanel.vue index 3121f1a7..a2136510 100644 --- a/src/components/panels/Timelapse/TimelapseFilesPanel.vue +++ b/src/components/panels/Timelapse/TimelapseFilesPanel.vue @@ -599,7 +599,7 @@ export default class TimelapseFilesPanel extends Mixins(BaseMixin) { } get countPerPage() { - return this.$store.state.gui.view.gcodefiles?.countPerPage ?? 10 + return this.$store.state.gui.view.timelapse?.countPerPage ?? 10 } set countPerPage(newVal) {