Skip to content

Commit

Permalink
Adding missing rel attribute on links.
Browse files Browse the repository at this point in the history
  • Loading branch information
bastienwirtz committed May 30, 2020
1 parent 9814a03 commit c528e02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<section v-if="config.header" class="first-line">
<div v-cloak class="container">
<div class="logo">
<img v-if="config.logo" :src="config.logo" />
<img v-if="config.logo" :src="config.logo" alt="dashboard logo" />
<i v-if="config.icon" :class="config.icon"></i>
</div>
<div class="dashboard-title">
Expand Down
2 changes: 1 addition & 1 deletion src/components/Service.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div>
<div class="card">
<a :href="item.url" :target="item.target">
<a :href="item.url" :target="item.target" rel="noreferrer">
<div class="card-content">
<div class="media">
<div v-if="item.logo" class="media-left">
Expand Down

0 comments on commit c528e02

Please sign in to comment.