summaryrefslogtreecommitdiff
path: root/src/layouts
diff options
context:
space:
mode:
authorDerick Montague <derick.montague@ibm.com>2020-10-22 00:20:00 +0300
committerDerick Montague <derick.montague@ibm.com>2020-11-03 19:47:51 +0300
commit602e98aa32f82fd3b0c3d250c7cc1f8da971db24 (patch)
tree2894194868ff987718a8b19f112b8106d662aa83 /src/layouts
parent47165201c79b3d2c4ccc62a49a9c75d038ee8fe6 (diff)
downloadwebui-vue-602e98aa32f82fd3b0c3d250c7cc1f8da971db24.tar.xz
Update linting packages to use latest
- 99% of changes were small syntax changes that were changed by the lint command. There were a couple of small manual changes to meet the property order patterns established as part of the vue:recommended guidelines. There are rules that were set from errors to warnings and new stories are being opened to address those issues. Testing: - Successfully ran npm run serve - Successfully ran npm run lint - Verified functionality works as expected, e.g. success and failure use cases - Resolved any JavaScript errors thrown to the console Signed-off-by: Derick Montague <derick.montague@ibm.com> Change-Id: Ie082f31c73ccbe8a60afa8f88a9ef6dbf33d9fd2
Diffstat (limited to 'src/layouts')
-rw-r--r--src/layouts/AppLayout.vue14
-rw-r--r--src/layouts/ConsoleLayout.vue2
-rw-r--r--src/layouts/LoginLayout.vue4
3 files changed, 10 insertions, 10 deletions
diff --git a/src/layouts/AppLayout.vue b/src/layouts/AppLayout.vue
index e040bef8..a4f73daf 100644
--- a/src/layouts/AppLayout.vue
+++ b/src/layouts/AppLayout.vue
@@ -17,17 +17,17 @@ export default {
components: {
AppHeader,
AppNavigation,
- PageContainer
+ PageContainer,
},
data() {
return {
- routerKey: 0
+ routerKey: 0,
};
},
watch: {
- $route: function() {
+ $route: function () {
// $nextTick = DOM updated
- this.$nextTick(function() {
+ this.$nextTick(function () {
// Get the focusTarget DOM element
let focusTarget = this.$refs.focusTarget.$el;
@@ -41,15 +41,15 @@ export default {
// Reason: https://axesslab.com/skip-links/#update-3-a-comment-from-gov-uk
focusTarget.removeAttribute('tabindex');
});
- }
+ },
},
methods: {
refresh() {
// Changing the component :key value will trigger
// a component re-rendering and 'refresh' the view
this.routerKey += 1;
- }
- }
+ },
+ },
};
</script>
diff --git a/src/layouts/ConsoleLayout.vue b/src/layouts/ConsoleLayout.vue
index 99f8d9f5..9f8175bf 100644
--- a/src/layouts/ConsoleLayout.vue
+++ b/src/layouts/ConsoleLayout.vue
@@ -4,6 +4,6 @@
<script>
export default {
- name: 'Console'
+ name: 'Console',
};
</script>
diff --git a/src/layouts/LoginLayout.vue b/src/layouts/LoginLayout.vue
index ab6fbe20..c2b9af57 100644
--- a/src/layouts/LoginLayout.vue
+++ b/src/layouts/LoginLayout.vue
@@ -26,9 +26,9 @@ export default {
name: 'LoginLayout',
data() {
return {
- altLogo: `${process.env.VUE_APP_COMPANY_NAME} logo`
+ altLogo: `${process.env.VUE_APP_COMPANY_NAME} logo`,
};
- }
+ },
};
</script>