Apply suggestion to src/services/theme_data/theme_data.service.js

This commit is contained in:
HJ 2020-07-14 13:02:50 +00:00
parent afa76b65b7
commit 6893806db9

View file

@ -132,7 +132,6 @@ export const topoSort = (
// The index thing is to make sorting stable on browsers // The index thing is to make sorting stable on browsers
// where Array.sort() isn't stable // where Array.sort() isn't stable
return output.map((data, index) => ({ data, index })).sort(({ data: a, index: ai }, { data: b, index: bi }) => { return output.map((data, index) => ({ data, index })).sort(({ data: a, index: ai }, { data: b, index: bi }) => {
console.log(a, b, ai, bi)
const depsA = getDeps(a, inheritance).length const depsA = getDeps(a, inheritance).length
const depsB = getDeps(b, inheritance).length const depsB = getDeps(b, inheritance).length