File tree Expand file tree Collapse file tree 2 files changed +18
-22
lines changed Expand file tree Collapse file tree 2 files changed +18
-22
lines changed Original file line number Diff line number Diff line change 34
34
</v-container >
35
35
</div >
36
36
</template >
37
+
37
38
<script setup lang="ts">
38
39
import AppToolbarCentered from ' @/components/AppToolbarCentered.vue'
39
40
import { computed , useSlots } from ' vue'
@@ -79,6 +80,9 @@ const title = computed(() => {
79
80
case ' Transactions' :
80
81
case ' Transaction' :
81
82
return (route .params .txId as string ) || t (' transaction.transactions' )
83
+ case ' SendFunds' :
84
+ return t (' home.send_btn' )
85
+
82
86
default :
83
87
return t (' options.page_title' )
84
88
}
Original file line number Diff line number Diff line change 1
1
<template >
2
- <div :class =" className" class =" w-100" >
3
- <app-toolbar-centered app :title =" $t('home.send_btn')" flat absolute disable-max-width />
4
-
5
- <v-container fluid class =" px-0 py-0" :class =" `${className}__content`" >
6
- <v-row justify =" center" no-gutters >
7
- <container padding disable-max-width >
8
- <send-funds-form
9
- class =" pt-5"
10
- :crypto-currency =" cryptoCurrency"
11
- :recipient-address =" recipientAddress"
12
- :amount-to-send =" amountToSend"
13
- :address-readonly =" comeFromChat"
14
- :reply-to-id =" $route.query.replyToId"
15
- @send =" onSend"
16
- @error =" onError"
17
- />
18
- </container >
19
- </v-row >
20
- </v-container >
21
- </div >
2
+ <navigation-wrapper :class =" className" >
3
+ <send-funds-form
4
+ class =" pt-5"
5
+ :crypto-currency =" cryptoCurrency"
6
+ :recipient-address =" recipientAddress"
7
+ :amount-to-send =" amountToSend"
8
+ :address-readonly =" comeFromChat"
9
+ :reply-to-id =" $route.query.replyToId"
10
+ @send =" onSend"
11
+ @error =" onError"
12
+ />
13
+ </navigation-wrapper >
22
14
</template >
23
15
24
16
<script >
25
17
import validateAddress from ' @/lib/validateAddress'
26
18
import { isNumeric } from ' @/lib/numericHelpers'
27
19
28
- import AppToolbarCentered from ' @/components/AppToolbarCentered.vue'
29
20
import SendFundsForm from ' @/components/SendFundsForm.vue'
30
21
import { AllCryptos } from ' @/lib/constants/cryptos'
31
22
import { vibrate } from ' @/lib/vibrate'
23
+ import NavigationWrapper from ' @/components/NavigationWrapper.vue'
32
24
33
25
export default {
34
26
components: {
35
- AppToolbarCentered ,
27
+ NavigationWrapper ,
36
28
SendFundsForm
37
29
},
38
30
data : () => ({
You can’t perform that action at this time.
0 commit comments