This commit is contained in:
Roman Storm 2020-11-30 12:55:16 -08:00
parent 029a1ff017
commit 002e7eb979
No known key found for this signature in database
GPG Key ID: 522F2A785F34E71F

View File

@ -20,7 +20,7 @@
path="deployedBy"
>
<template v-slot:link>
<a :href="domainUrl(data.deployTransaction)" target="_blank">{{
<a :href="txExplorerUrl(data.deployTransaction)" target="_blank">{{
data.deployerAddress
}}</a>
</template>
@ -117,6 +117,7 @@ export default {
computed: {
...mapGetters('provider', ['getProviderName', 'getAccount']),
...mapGetters('steps', ['canDeploy']),
...mapGetters('txStorage', ['txExplorerUrl']),
isNotLoggedIn() {
return !this.getProviderName
},