Skip to content

Commit

Permalink
Move heading in the body of the modal
Browse files Browse the repository at this point in the history
  • Loading branch information
mradkov committed Apr 14, 2020
1 parent a8c5657 commit 4299612
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/popup/router/components/Modals/TipBadgeModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<Modal @close="resolve">
<div class="badge-modal-header" slot="header">
<UrlBadge :type="verifiedStatus" />
</div>
<div slot="body">
<h4>
{{
verifiedStatus == 'verified'
? $t('pages.tipPage.whatIsVerifieddUrl')
: $t('pages.tipPage.whatIsNotVerifiedUrl')
}}
</h4>
</div>
<div slot="body">
{{
verifiedStatus == 'verified'
? $t('pages.tipPage.verifiedUrlInfo')
Expand Down

1 comment on commit 4299612

@davidyuk
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.