diff --git a/src/components/ProofActionMenuButton.vue b/src/components/ProofActionMenuButton.vue index d43db7e5f1b..b5794a316cc 100644 --- a/src/components/ProofActionMenuButton.vue +++ b/src/components/ProofActionMenuButton.vue @@ -5,6 +5,9 @@ + + {{ $t('Common.Details') }} + {{ $t('Common.Edit') }} @@ -76,6 +79,9 @@ export default { } }, computed: { + getProofDetailUrl() { + return `/proofs/${this.proof.id}` + }, userCanAddPrice() { return this.proof && (this.proof.type === 'PRICE_TAG' || this.proof.type === 'RECEIPT') },