Skip to content

Commit

Permalink
Add https by default
Browse files Browse the repository at this point in the history
  • Loading branch information
claudiabdm committed Mar 28, 2024
1 parent cfb3aff commit 72d3ead
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/CvPreview.vue
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ export default defineComponent({
<a
target="_blank"
rel="noopener"
:href="formSettings.website"
:href="formSettings.website.includes('https') ? formSettings.website : `https://${formSettings.website}`"
>{{
formSettings.website
}}</a>
Expand Down Expand Up @@ -514,7 +514,7 @@ p {
}
&__side {
@apply flex flex-col pl-8 pr-5 py-8;
@apply flex flex-col pl-8 pr-5 py-8;
&--with-img {
@apply py-7;
Expand Down

0 comments on commit 72d3ead

Please sign in to comment.