Allow searching sequence list by line.

Closes #40.
This commit is contained in:
D. Berge
2020-09-23 21:13:55 +02:00
parent 808fa71c5f
commit 46b9978d3f

View File

@@ -375,7 +375,7 @@ export default {
if (item.sequence == number) return true;
if (search.length > 3) {
const searchShots = [ "fsp", "lsp", "fsp_final", "lsp_final" ].some( k =>
const searchShots = [ "line", "fsp", "lsp", "fsp_final", "lsp_final" ].some( k =>
item[k] == number
);
if (searchShots) return true;