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