Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
openbmc
/
webui-vue
/
47165201c79b3d2c4ccc62a49a9c75d038ee8fe6
/
.
/
src
/
components
/
Mixins
/
TableSortMixin.js
blob: 7e9885035399d63b4845a88ff28e679a7111b1cf [
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
;