fix: remove eslint and prettier warnings

This commit is contained in:
Łukasz Holeczek
2021-10-31 20:50:56 +01:00
parent 1660d556f7
commit d2d9de7520
40 changed files with 388 additions and 480 deletions
+3 -3
View File
@@ -369,11 +369,11 @@
</template>
<script>
import { CChart } from "@coreui/vue-chartjs";
import { CChart } from '@coreui/vue-chartjs'
export default {
name: "WidgetsStatsA",
name: 'WidgetsStatsA',
components: {
CChart,
},
};
}
</script>
+11 -11
View File
@@ -132,7 +132,7 @@
color="warning"
:values="[
{ title: 'events', value: '12+' },
{ title: 'meetings', value: '4' },
{ title: 'meetings', value: '4' },
]"
>
<template #icon
@@ -155,11 +155,11 @@
datasets: [
{
backgroundColor: 'rgba(255,255,255,.1)',
borderColor: 'rgba(255,255,255,.55)',
pointHoverBackgroundColor: '#fff',
borderWidth: 2,
data: [35, 23, 56, 22, 97, 23, 64],
fill: true,
borderColor: 'rgba(255,255,255,.55)',
pointHoverBackgroundColor: '#fff',
borderWidth: 2,
data: [35, 23, 56, 22, 97, 23, 64],
fill: true,
},
],
}"
@@ -172,9 +172,9 @@
</template>
<script>
import { CChart } from "@coreui/vue-chartjs";
import { CChart } from '@coreui/vue-chartjs'
export default {
name: "WidgetsStatsD",
name: 'WidgetsStatsD',
components: {
CChart,
},
@@ -205,11 +205,11 @@ export default {
display: false,
},
},
};
}
return {
options,
};
}
},
};
}
</script>