Redirect to market orders

This commit is contained in:
ekzyis 2023-12-04 01:54:36 +01:00
parent fe5feccfee
commit 79e2cbefdc
1 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@
<span v-if="invoice.DescriptionMarketId">
<span v-if="invoice.Description">
<span>{{ invoice.Description }}</span>
<router-link :to="'/market/' + invoice.DescriptionMarketId">[market]</router-link>
<router-link :to="'/market/' + invoice.DescriptionMarketId + '/orders'">[market]</router-link>
</span>
<span v-else>&lt;empty&gt;</span>
</span>
@ -101,7 +101,7 @@ const fetchInvoice = async () => {
if (marketId) {
body.DescriptionMarketId = marketId
body.Description = body.Description.replace(regexp, '')
callbackUrl.value = '/market/' + marketId
callbackUrl.value = '/market/' + marketId + '/orders'
}
}
invoice.value = body