Reformat files with new linter
All changes should be whitespace, and were done using npm run-script
lint.
Change-Id: I943c6b435c5c872841af5affc1e89910468b5ca6
Signed-off-by: Ed Tanous <ed@tanous.net>
diff --git a/src/components/Global/FormFile.vue b/src/components/Global/FormFile.vue
index cf713ac..e18d614 100644
--- a/src/components/Global/FormFile.vue
+++ b/src/components/Global/FormFile.vue
@@ -86,7 +86,9 @@
opacity: 0;
height: 0;
&:focus + span {
- box-shadow: inset 0 0 0 3px theme-color('primary'), inset 0 0 0 5px $white;
+ box-shadow:
+ inset 0 0 0 3px theme-color('primary'),
+ inset 0 0 0 5px $white;
}
}
diff --git a/src/components/Global/PageTitle.vue b/src/components/Global/PageTitle.vue
index f5e6df9..c3b49d8 100644
--- a/src/components/Global/PageTitle.vue
+++ b/src/components/Global/PageTitle.vue
@@ -28,7 +28,7 @@
let index = title.search('-');
title = title.replace(
'-' + title.charAt(index + 1),
- title.charAt(index + 1).toUpperCase()
+ title.charAt(index + 1).toUpperCase(),
);
i++;
}
diff --git a/src/components/Global/TableFilter.vue b/src/components/Global/TableFilter.vue
index 7c66bea..f26777b 100644
--- a/src/components/Global/TableFilter.vue
+++ b/src/components/Global/TableFilter.vue
@@ -65,7 +65,8 @@
default: () => [],
validator: (prop) => {
return prop.every(
- (filter) => 'label' in filter && 'values' in filter && 'key' in filter
+ (filter) =>
+ 'label' in filter && 'values' in filter && 'key' in filter,
);
},
},
@@ -94,7 +95,7 @@
emitChange() {
const activeFilters = this.filters.map(({ key, values }) => {
const activeValues = values.filter(
- (value) => this.tags.indexOf(value) !== -1
+ (value) => this.tags.indexOf(value) !== -1,
);
return {
key,