From cd84a165496a8255598cd7f93704de868b61a9e7 Mon Sep 17 00:00:00 2001 From: Yoga Pangestu Date: Sat, 13 Jun 2026 15:01:23 +0700 Subject: [PATCH] fix: collapse cutting in progress section by default in admin dashboard --- .../admin/manage/cuttings/CuttingInProgressSection.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/js/components/admin/manage/cuttings/CuttingInProgressSection.vue b/resources/js/components/admin/manage/cuttings/CuttingInProgressSection.vue index 9f3f62f..b0734f1 100644 --- a/resources/js/components/admin/manage/cuttings/CuttingInProgressSection.vue +++ b/resources/js/components/admin/manage/cuttings/CuttingInProgressSection.vue @@ -21,7 +21,7 @@ const props = defineProps<{ cuttings: CuttingListItem[]; }>(); -const open = ref(true); +const open = ref(false); const totalInProgress = computed(() => props.cuttings.length);