summaryrefslogtreecommitdiff
path: root/src/views/Fans/StaticInformation/FansStaticPage.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/views/Fans/StaticInformation/FansStaticPage.vue')
-rw-r--r--src/views/Fans/StaticInformation/FansStaticPage.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/views/Fans/StaticInformation/FansStaticPage.vue b/src/views/Fans/StaticInformation/FansStaticPage.vue
index 56a5c183..a9f2d68b 100644
--- a/src/views/Fans/StaticInformation/FansStaticPage.vue
+++ b/src/views/Fans/StaticInformation/FansStaticPage.vue
@@ -115,7 +115,7 @@ export default {
computed: {
allSensors() {
- let sensors = this.$store.getters['sensors/sensors'];
+ let sensors = this.$store.getters['sensors/fanSensors'];
if (this.isSensorsExist) {
sensors.forEach((sensor) => {
sensor.type = sensor.name.toLowerCase().includes('cpu')
@@ -128,8 +128,8 @@ export default {
isSensorsExist() {
return (
- this.$store.getters['sensors/sensors'] &&
- this.$store.getters['sensors/sensors'].length > 0
+ this.$store.getters['sensors/fanSensors'] &&
+ this.$store.getters['sensors/fanSensors'].length > 0
);
},