mirror of https://github.com/bastienwirtz/homer
lint fix
parent
012f472aa7
commit
a40acb2fee
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue