xref: /openbmc/webui-vue/src/components/Mixins/TableSortMixin.js (revision 511650a90260e0922bfeb1091b4babc597d36af6)
1const STATUS = ['OK', 'Warning', 'Critical'];
2
3const TableSortMixin = {
4  methods: {
5    sortStatus(a, b, key) {
6      return STATUS.indexOf(a[key]) - STATUS.indexOf(b[key]);
7    },
8  },
9};
10
11export default TableSortMixin;
12