summaryrefslogtreecommitdiff
path: root/src/views/_sila/Motherboard
diff options
context:
space:
mode:
authorMaksim Zakharov <m.zakharov@IBS.RU>2022-08-10 14:27:34 +0300
committerMaksim Zakharov <m.zakharov@IBS.RU>2022-08-10 14:27:34 +0300
commitaed1b11cf9b523bf106abd767226e98c098b6e0a (patch)
treee41124557b5f795e07ed32f128edd35e9152a145 /src/views/_sila/Motherboard
parent3b602a7dc56fa647e9a798793cda24308bcb527e (diff)
downloadwebui-vue-aed1b11cf9b523bf106abd767226e98c098b6e0a.tar.xz
fix property name
Diffstat (limited to 'src/views/_sila/Motherboard')
-rw-r--r--src/views/_sila/Motherboard/Dynamic/MotherboardTemp.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/views/_sila/Motherboard/Dynamic/MotherboardTemp.vue b/src/views/_sila/Motherboard/Dynamic/MotherboardTemp.vue
index 0db21e48..9f8d41cb 100644
--- a/src/views/_sila/Motherboard/Dynamic/MotherboardTemp.vue
+++ b/src/views/_sila/Motherboard/Dynamic/MotherboardTemp.vue
@@ -37,7 +37,7 @@
:items="items"
:fields="fields"
:empty-text="$t('global.table.emptyMessage')"
- :busy="isBisy"
+ :busy="isBusy"
>
<template #cell(name)="{ value, index }">
<div
@@ -86,7 +86,7 @@ export default {
data() {
return {
warning: 72,
- isBisy: true,
+ isBusy: true,
fields: [
{
key: 'name',
@@ -166,7 +166,7 @@ export default {
.dispatch('motherboard/getMotherboardDynamic', payload)
.finally(() => {
this.endLoader();
- this.isBisy = false;
+ this.isBusy = false;
});
},
},