Skip to content

Commit c016907

Browse files
committed
update: changes after merge.
1 parent 93a8196 commit c016907

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

src/routes/(console)/organization-[organization]/billing/paymentHistory.svelte

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,14 @@
6868
}
6969
});
7070
71-
const columns = [
72-
{ id: 'dueDate', width: { min: 120 } },
73-
{ id: 'status', width: { min: hasPaymentError ? 200 : 100 } },
74-
{ id: 'amount', width: { min: 120 } },
75-
{ id: 'action', width: 40 }
76-
];
71+
const columns = $derived.by(() => {
72+
return [
73+
{ id: 'dueDate', width: { min: 120 } },
74+
{ id: 'status', width: { min: hasPaymentError ? 200 : 100 } },
75+
{ id: 'amount', width: { min: 120 } },
76+
{ id: 'action', width: 40 }
77+
];
78+
});
7779
</script>
7880

7981
<CardGrid>

0 commit comments

Comments
 (0)