File tree Expand file tree Collapse file tree 3 files changed +4
-8
lines changed
components/billing/alerts
routes/(console)/organization-[organization] Expand file tree Collapse file tree 3 files changed +4
-8
lines changed Original file line number Diff line number Diff line change 111
111
<svelte:fragment slot =" footer" >
112
112
<Button .Button size ="s" variant ="secondary" on:click ={() => (showSelectProject = false )}
113
113
>Cancel</Button .Button >
114
- <Button .Button size ="s" disabled ={selectedProjects .length !== $currentPlan ?.projects }>Save</Button .Button >
114
+ <Button .Button size ="s" disabled ={selectedProjects .length !== $currentPlan ?.projects }
115
+ >Save</Button .Button >
115
116
</svelte:fragment >
116
117
</Modal >
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ export const roles = [
69
69
70
70
export const teamStatusReadonly = 'readonly' ;
71
71
export const billingLimitOutstandingInvoice = 'outstanding_invoice' ;
72
- export const billingProjectsLimitDate = '[date]'
72
+ export const billingProjectsLimitDate = '[date]' ;
73
73
74
74
export const paymentMethods = derived ( page , ( $page ) => $page . data . paymentMethods as PaymentList ) ;
75
75
export const addressList = derived ( page , ( $page ) => $page . data . addressList as AddressesList ) ;
Original file line number Diff line number Diff line change 62
62
title ={' Create project' }
63
63
onSubmit ={create }
64
64
bind:error >
65
- <CreateProject
66
- showTitle ={false }
67
- bind:id
68
- bind:projectName ={name }
69
- bind:region
70
- {regions } />
65
+ <CreateProject showTitle ={false } bind:id bind:projectName ={name } bind:region {regions } />
71
66
<svelte:fragment slot =" footer" >
72
67
<Button
73
68
submit
You can’t perform that action at this time.
0 commit comments