fix(TASK-30): On-Chain as first tab in receive modals
Reordered receive method tabs from [Lightning, On-Chain, Ecash] to [On-Chain, Lightning, Ecash] in both ReceiveBitcoinModal and Web5 view. Default selection changed to 'onchain'. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
a4b9e4f8b4
commit
a2d2d3ca29
@ -7,7 +7,7 @@
|
|||||||
<!-- Method tabs -->
|
<!-- Method tabs -->
|
||||||
<div class="flex gap-1 mb-4 p-1 bg-white/5 rounded-lg">
|
<div class="flex gap-1 mb-4 p-1 bg-white/5 rounded-lg">
|
||||||
<button
|
<button
|
||||||
v-for="m in (['lightning', 'onchain', 'ecash'] as const)"
|
v-for="m in (['onchain', 'lightning', 'ecash'] as const)"
|
||||||
:key="m"
|
:key="m"
|
||||||
@click="receiveMethod = m"
|
@click="receiveMethod = m"
|
||||||
class="flex-1 px-2 py-1.5 rounded text-xs font-medium capitalize transition-colors"
|
class="flex-1 px-2 py-1.5 rounded text-xs font-medium capitalize transition-colors"
|
||||||
@ -76,7 +76,7 @@ const { t } = useI18n()
|
|||||||
defineProps<{ show: boolean }>()
|
defineProps<{ show: boolean }>()
|
||||||
const emit = defineEmits<{ close: []; received: [] }>()
|
const emit = defineEmits<{ close: []; received: [] }>()
|
||||||
|
|
||||||
const receiveMethod = ref<'lightning' | 'onchain' | 'ecash'>('lightning')
|
const receiveMethod = ref<'lightning' | 'onchain' | 'ecash'>('onchain')
|
||||||
const invoiceAmount = ref<number>(0)
|
const invoiceAmount = ref<number>(0)
|
||||||
const invoiceMemo = ref('')
|
const invoiceMemo = ref('')
|
||||||
const invoiceResult = ref('')
|
const invoiceResult = ref('')
|
||||||
|
|||||||
@ -1693,7 +1693,7 @@
|
|||||||
<!-- Method tabs -->
|
<!-- Method tabs -->
|
||||||
<div class="flex gap-1 mb-4 p-1 bg-white/5 rounded-lg">
|
<div class="flex gap-1 mb-4 p-1 bg-white/5 rounded-lg">
|
||||||
<button
|
<button
|
||||||
v-for="m in (['lightning', 'onchain', 'ecash'] as const)"
|
v-for="m in (['onchain', 'lightning', 'ecash'] as const)"
|
||||||
:key="m"
|
:key="m"
|
||||||
@click="receiveMethod = m"
|
@click="receiveMethod = m"
|
||||||
class="flex-1 px-2 py-1.5 rounded text-xs font-medium capitalize transition-colors"
|
class="flex-1 px-2 py-1.5 rounded text-xs font-medium capitalize transition-colors"
|
||||||
@ -2789,7 +2789,7 @@ const signedPsbtInput = ref('')
|
|||||||
|
|
||||||
// Unified Receive
|
// Unified Receive
|
||||||
const showUnifiedReceiveModal = ref(false)
|
const showUnifiedReceiveModal = ref(false)
|
||||||
const receiveMethod = ref<'lightning' | 'onchain' | 'ecash'>('lightning')
|
const receiveMethod = ref<'lightning' | 'onchain' | 'ecash'>('onchain')
|
||||||
const receiveInvoiceAmount = ref<number>(0)
|
const receiveInvoiceAmount = ref<number>(0)
|
||||||
const receiveInvoiceMemo = ref('')
|
const receiveInvoiceMemo = ref('')
|
||||||
const receiveInvoiceResult = ref('')
|
const receiveInvoiceResult = ref('')
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user