Skip to content

Commit ccce9f6

Browse files
authored
Merge pull request #2168 from appwrite/feat-retry-abandoned-invoices
feat: allow retrying abandoned invoices
2 parents b5da28f + ca716df commit ccce9f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@
161161
href={`${endpoint}/organizations/${page.params.organization}/invoices/${invoice.$id}/download`}>
162162
Download PDF
163163
</ActionMenu.Item.Anchor>
164-
{#if status === 'overdue' || status === 'failed'}
164+
{#if status === 'overdue' || status === 'failed' || status === 'abandoned'}
165165
<ActionMenu.Item.Button
166166
leadingIcon={IconRefresh}
167167
on:click={() => {

0 commit comments

Comments
 (0)