Skip to content

Commit

Permalink
💄 Add URL display in ISCN widget
Browse files Browse the repository at this point in the history
  • Loading branch information
williamchong committed Aug 23, 2021
1 parent a040f97 commit 607280a
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions locales/client/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -1036,6 +1036,7 @@
"type": "Content Type",
"license": "License",
"tags": "Tags",
"url": "URL",
"ISCNTotalFee": "Estimated ISCN Fee: {ISCNTotalFee} LIKE"
},
"button": {
Expand Down
14 changes: 14 additions & 0 deletions pages/in/widget/iscn/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,19 @@
{{ tags.join(', ') }}
</div>
</div>

<div
v-if="url"
class="likepay-panel__section-meta"
>
<div class="likepay-panel__section-meta-label">
{{ $t('ISCNWidget.label.url') }}
</div>
<div class="likepay-panel__section-meta-value">
{{ url }}
</div>
</div>

</section>

<section class="likepay-panel__section-dropdown-container">
Expand Down Expand Up @@ -193,6 +206,7 @@ export default {
redirectUri: '',
state: '',
memo: '',
url: '',
ISCNTotalFee: 0.00,
};
},
Expand Down

0 comments on commit 607280a

Please # to comment.