summaryrefslogtreecommitdiff
path: root/src/components/Mixins/TableSortMixin.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Mixins/TableSortMixin.js')
-rw-r--r--src/components/Mixins/TableSortMixin.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/Mixins/TableSortMixin.js b/src/components/Mixins/TableSortMixin.js
index 7e988503..c0997350 100644
--- a/src/components/Mixins/TableSortMixin.js
+++ b/src/components/Mixins/TableSortMixin.js
@@ -4,8 +4,8 @@ const TableSortMixin = {
methods: {
sortStatus(a, b, key) {
return STATUS.indexOf(a[key]) - STATUS.indexOf(b[key]);
- }
- }
+ },
+ },
};
export default TableSortMixin;