mirror of
https://github.com/bastienwirtz/homer.git
synced 2025-03-13 14:59:23 +01:00
lint fix
This commit is contained in:
parent
012f472aa7
commit
a40acb2fee
src/components
@ -9,7 +9,7 @@
|
|||||||
href="https://github.com/bastienwirtz/homer/blob/main/docs/configuration.md#configuration"
|
href="https://github.com/bastienwirtz/homer/blob/main/docs/configuration.md#configuration"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
>
|
>
|
||||||
Get started
|
Get started →
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
@ -8,7 +8,8 @@
|
|||||||
<strong v-if="unread > 0" class="notif unread" title="Unread">
|
<strong v-if="unread > 0" class="notif unread" title="Unread">
|
||||||
{{ unread }}
|
{{ unread }}
|
||||||
</strong>
|
</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>
|
title="Connection error to the FreshRSS API, check url username and password in config.yml">?</strong>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@ -21,13 +22,13 @@ import Generic from "./Generic.vue";
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "FreshRSS",
|
name: "FreshRSS",
|
||||||
|
components: {
|
||||||
|
Generic,
|
||||||
|
},
|
||||||
mixins: [service],
|
mixins: [service],
|
||||||
props: {
|
props: {
|
||||||
item: Object,
|
item: Object,
|
||||||
},
|
},
|
||||||
components: {
|
|
||||||
Generic,
|
|
||||||
},
|
|
||||||
data: () => {
|
data: () => {
|
||||||
return {
|
return {
|
||||||
subscriptions: 0,
|
subscriptions: 0,
|
||||||
|
@ -23,13 +23,13 @@ import Generic from "./Generic.vue";
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "Gotify",
|
name: "Gotify",
|
||||||
|
components: {
|
||||||
|
Generic,
|
||||||
|
},
|
||||||
mixins: [service],
|
mixins: [service],
|
||||||
props: {
|
props: {
|
||||||
item: Object,
|
item: Object,
|
||||||
},
|
},
|
||||||
components: {
|
|
||||||
Generic,
|
|
||||||
},
|
|
||||||
data: () => ({
|
data: () => ({
|
||||||
health: {},
|
health: {},
|
||||||
messages: 0,
|
messages: 0,
|
||||||
|
Loading…
Reference in New Issue
Block a user