fix: collapse cutting in progress section by default in admin dashboard

This commit is contained in:
Yoga Pangestu 2026-06-13 15:01:23 +07:00
parent 15691a97c4
commit cd84a16549

View File

@ -21,7 +21,7 @@ const props = defineProps<{
cuttings: CuttingListItem[];
}>();
const open = ref(true);
const open = ref(false);
const totalInProgress = computed(() => props.cuttings.length);
</script>