Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
openbmc
/
webui-vue
/
c45cfe5c5e4a15f939ae35c1f61496adb1320125
/
.
/
src
/
components
/
Mixins
/
TableSortMixin.js
blob: c09973506bb110d90f032fb1176305593101b607 [
file
] [
log
] [
blame
]
const
STATUS
=
[
'OK'
,
'Warning'
,
'Critical'
];
const
TableSortMixin
=
{
methods
:
{
sortStatus
(
a
,
b
,
key
)
{
return
STATUS
.
indexOf
(
a
[
key
])
-
STATUS
.
indexOf
(
b
[
key
]);
},
},
};
export
default
TableSortMixin
;