Feed Healthy indicator

This commit is contained in:
mfcar 2023-10-01 22:04:07 +01:00
parent 7f5fde1de2
commit 2ada293e8a
No known key found for this signature in database

View file

@ -0,0 +1,28 @@
<template>
<p v-if="value" class="text-success">
<ui-tooltip direction="top"
:text="$strings.LabelFeedWorking">
<span class="material-icons text-2xl">cloud_done</span>
</ui-tooltip>
</p>
<p v-else class="text-error">
<ui-tooltip direction="top"
:text="$strings.LabelFeedNotWorking">
<span class="material-icons text-2xl">cloud_off</span>
</ui-tooltip>
</p>
</template>
<script>
export default {
props: {
value: Boolean
},
data() {
return {}
},
computed: {},
methods: {},
mounted() {}
}
</script>