Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,4 @@ nginx.crt
nginx.key

.npmrc
.env
18 changes: 17 additions & 1 deletion src/pegin/components/create/ConfirmationSteps.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
<v-row>
<p class="text-h6">Confirm Transaction on your {{ walletName }} Wallet</p>
</v-row>
<v-row no-gutters class="d-flex justify-start">
<v-alert variant="text" type="warning" density="compact" class="pa-0" prominent>
<template #prepend>
<v-icon size="x-small" :icon="mdiInformationOutline" />
</template>
<span class="text-body-sm">
Make sure that you are sending the exact amounted quoted.
</span>
</v-alert>
</v-row>
<v-row class="mt-6 text-bw-400">
Make sure the amount, address and transaction fee displayed on the {{ walletName }} wallet
are correct.
Expand Down Expand Up @@ -414,7 +424,12 @@ import { PeginQuote } from '@/common/types';
import * as constants from '@/common/store/constants';
import { truncateStringToSize, copyToClipboard, getBtcAddressExplorerUrl } from '@/common/utils';
import { useGetter, useState } from '@/common/store/helper';
import { mdiInformation, mdiOpenInNew, mdiContentCopy } from '@mdi/js';
import {
mdiInformation,
mdiOpenInNew,
mdiContentCopy,
mdiInformationOutline,
} from '@mdi/js';

export default defineComponent({
name: 'ConfirmationSteps',
Expand Down Expand Up @@ -512,6 +527,7 @@ export default defineComponent({
getBtcAddressExplorerUrl,
hasChange,
openAddressInExplorer,
mdiInformationOutline,
};
},
});
Expand Down
2 changes: 1 addition & 1 deletion src/pegin/components/create/PegInForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
<template #append>
<v-icon :icon="mdiArrowRight" />
</template>
Continue to Summary
Confirm quote
</v-btn-rsk>
<v-progress-circular class="align-self-end" v-else indeterminate />
</v-col>
Expand Down
Loading