summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorYoshie Muranaka <yoshiemuranaka@gmail.com>2021-01-20 23:15:12 +0300
committerYoshie Muranaka <yoshiemuranaka@gmail.com>2021-01-22 19:47:04 +0300
commit02f4ec2fbcda9bd0b1ef0bf2c8346f4096a0c069 (patch)
tree986ec5539972268a08b7729a3c65be07851c28e2 /src
parent7948123973716a5a391750a86b8b203658f25792 (diff)
downloadwebui-vue-02f4ec2fbcda9bd0b1ef0bf2c8346f4096a0c069.tar.xz
Remove unused property from firmware page
Removed isPageDisabled because it is not used Signed-off-by: Yoshie Muranaka <yoshiemuranaka@gmail.com> Change-Id: I0b3f604a0bae0d5e001911553ecb8727e7a78801
Diffstat (limited to 'src')
-rw-r--r--src/views/Configuration/Firmware/Firmware.vue3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/views/Configuration/Firmware/Firmware.vue b/src/views/Configuration/Firmware/Firmware.vue
index d9f337f4..0e162069 100644
--- a/src/views/Configuration/Firmware/Firmware.vue
+++ b/src/views/Configuration/Firmware/Firmware.vue
@@ -106,7 +106,6 @@
<form-file
id="image-file"
accept=".tar"
- :disabled="isPageDisabled"
:state="getValidationState($v.file)"
aria-describedby="image-file-help-block"
@input="onFileUpload($event)"
@@ -134,7 +133,6 @@
v-model="tftpIpAddress"
type="text"
:state="getValidationState($v.tftpIpAddress)"
- :disabled="isPageDisabled"
aria-describedby="server-address-help-block"
@input="$v.tftpIpAddress.$touch()"
/>
@@ -225,7 +223,6 @@ export default {
tftpIpAddress: null,
tftpFileName: null,
timeoutId: null,
- isPageDisabled: null,
loading: loading,
};
},