timeline: reverse priority on stack
Signed-off-by: Varun Patil <radialapps@gmail.com>pull/900/head
parent
4aed2946bf
commit
ba12616c0e
|
@ -1072,7 +1072,10 @@ export default defineComponent({
|
||||||
// Get the list of files with the same basename
|
// Get the list of files with the same basename
|
||||||
const fileList = files.get(basename);
|
const fileList = files.get(basename);
|
||||||
if (fileList?.length) {
|
if (fileList?.length) {
|
||||||
// Found main file
|
// Move main file to end (min priority)
|
||||||
|
const main = fileList.shift()!;
|
||||||
|
fileList.push(main);
|
||||||
|
|
||||||
// Do not add this to result
|
// Do not add this to result
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue