Skip to content

Commit d22d96d

Browse files
committed
Removed orphaned </div>
1 parent 4a30a9b commit d22d96d

File tree

1 file changed

+51
-50
lines changed

1 file changed

+51
-50
lines changed

src/components/DonateMoney.vue

Lines changed: 51 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -52,58 +52,59 @@
5252
2
5353
</v-btn>
5454

55-
<v-btn
56-
elevation="2"
57-
raised
58-
:value="2000"
59-
@click="unsetCustomAmountSelection"
60-
>
61-
20
62-
</v-btn>
63-
64-
<v-btn
65-
elevation="2"
66-
raised
67-
:value="5000"
68-
@click="unsetCustomAmountSelection"
69-
>
70-
50
71-
</v-btn>
72-
73-
<v-btn
74-
v-if="emptyTransactionsEnabled"
75-
elevation="2"
76-
raised
77-
:value="0"
78-
@click="unsetCustomAmountSelection"
79-
>
80-
0
81-
</v-btn>
82-
83-
<v-btn elevation="2" raised @click="toggleCustomDonation">
84-
Custom Amount
85-
</v-btn>
86-
</v-btn-toggle>
87-
88-
<div class="d-flex justify-center flex-column align-center :width=100%">
89-
<v-text-field
90-
v-if="customAmountSelected"
91-
ref="input"
92-
v-model="customDonationAmount"
93-
class="custom-donation-amount-textfield"
94-
inputmode="numeric"
95-
label="Donation Amount"
96-
type="number"
97-
required
98-
>
99-
<v-icon slot="prepend"> mdi-currency-usd </v-icon>
100-
{{ styledCustomDonation }}
101-
</v-text-field>
102-
</div>
55+
<v-btn
56+
elevation="2"
57+
raised
58+
:value="2000"
59+
@click="unsetCustomAmountSelection"
60+
>
61+
20
62+
</v-btn>
63+
64+
<v-btn
65+
elevation="2"
66+
raised
67+
:value="5000"
68+
@click="unsetCustomAmountSelection"
69+
>
70+
50
71+
</v-btn>
72+
73+
<v-btn
74+
v-if="emptyTransactionsEnabled"
75+
elevation="2"
76+
raised
77+
:value="0"
78+
@click="unsetCustomAmountSelection"
79+
>
80+
0
81+
</v-btn>
82+
83+
<v-btn elevation="2" raised @click="toggleCustomDonation">
84+
Custom Amount
85+
</v-btn>
86+
</v-btn-toggle>
87+
88+
<div class="d-flex justify-center flex-column align-center :width=100%">
89+
<v-text-field
90+
v-if="customAmountSelected"
91+
ref="input"
92+
v-model="customDonationAmount"
93+
class="custom-donation-amount-textfield"
94+
inputmode="numeric"
95+
label="Donation Amount"
96+
type="number"
97+
required
98+
>
99+
<v-icon slot="prepend"> mdi-currency-usd </v-icon>
100+
{{ styledCustomDonation }}
101+
</v-text-field>
103102
</div>
104103
</v-col>
105104
<div>
106-
<v-btn outlined color="primary" text @click="submit()"> Send Letter </v-btn>
105+
<v-btn outlined color="primary" text @click="submit()">
106+
Send Letter
107+
</v-btn>
107108
</div>
108109
</section>
109110
</template>
@@ -234,7 +235,7 @@ export default {
234235
'dumpStateToLocalStorage',
235236
response.data.sessionId
236237
)
237-
238+
238239
location.href = response.data.url
239240
})
240241
.catch((error) => {

0 commit comments

Comments
 (0)