Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bastienwirtz committed Nov 13, 2024
1 parent 012f472 commit a40acb2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/components/GetStarted.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
href="https://github.com/bastienwirtz/homer/blob/main/docs/configuration.md#configuration"
target="_blank"
>
Get started
Get started
</a>
</p>
</div>
Expand Down
9 changes: 5 additions & 4 deletions src/components/services/FreshRSS.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
<strong v-if="unread > 0" class="notif unread" title="Unread">
{{ unread }}
</strong>
<strong v-if="serverError" class="notif errors"
<strong
v-if="serverError" class="notif errors"
title="Connection error to the FreshRSS API, check url username and password in config.yml">?</strong>
</div>
</template>
Expand All @@ -21,13 +22,13 @@ import Generic from "./Generic.vue";
export default {
name: "FreshRSS",
components: {
Generic,
},
mixins: [service],
props: {
item: Object,
},
components: {
Generic,
},
data: () => {
return {
subscriptions: 0,
Expand Down
6 changes: 3 additions & 3 deletions src/components/services/Gotify.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ import Generic from "./Generic.vue";
export default {
name: "Gotify",
components: {
Generic,
},
mixins: [service],
props: {
item: Object,
},
components: {
Generic,
},
data: () => ({
health: {},
messages: 0,
Expand Down

0 comments on commit a40acb2

Please sign in to comment.