summaryrefslogtreecommitdiff
path: root/src/views/Configuration
diff options
context:
space:
mode:
authorSurenNeware <sneware9@in.ibm.com>2020-10-27 11:48:54 +0300
committerDerick Montague <derick.montague@ibm.com>2020-12-01 02:52:42 +0300
commitba91c4996e37e92b247cee72272f2afe38efd81b (patch)
tree8eae58ba5ee91ab8eb8d02d05f2218a340c56d28 /src/views/Configuration
parentc42ad71d65805cf12fc5592d25814f68757be396 (diff)
downloadwebui-vue-ba91c4996e37e92b247cee72272f2afe38efd81b.tar.xz
Update data option for components using Mixin data
- Removed all the data options from all the mixins. - Updated component data property relying on data property defined in mixin. - Export data property from mixin file itself. Signed-off-by: Suren Neware <sneware9@in.ibm.com> Change-Id: I4aeffcb333bbaf5b78bcadd711b3169b0b4cb10e
Diffstat (limited to 'src/views/Configuration')
-rw-r--r--src/views/Configuration/Firmware/Firmware.vue3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/views/Configuration/Firmware/Firmware.vue b/src/views/Configuration/Firmware/Firmware.vue
index d78b43ff..d4aef193 100644
--- a/src/views/Configuration/Firmware/Firmware.vue
+++ b/src/views/Configuration/Firmware/Firmware.vue
@@ -200,7 +200,7 @@ import ModalRebootBackupBmc from './FirmwareModalRebootBackupBmc';
import FormFile from '@/components/Global/FormFile';
import VuelidateMixin from '@/components/Mixins/VuelidateMixin.js';
-import LoadingBarMixin from '@/components/Mixins/LoadingBarMixin';
+import LoadingBarMixin, { loading } from '@/components/Mixins/LoadingBarMixin';
import BVToastMixin from '@/components/Mixins/BVToastMixin';
export default {
@@ -228,6 +228,7 @@ export default {
tftpFileName: null,
timeoutId: null,
isPageDisabled: null,
+ loading: loading,
};
},
computed: {