From 67a4055445da63f76ed98ab1b4a26ec5f3499512 Mon Sep 17 00:00:00 2001 From: Menci Date: Sun, 19 Mar 2017 22:04:44 +0800 Subject: [PATCH] Show new spj in data page --- utility.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utility.js b/utility.js index 30dbea7..bf7464a 100644 --- a/utility.js +++ b/utility.js @@ -217,7 +217,7 @@ module.exports = { res = res.filter(x => x.cases && x.cases.length !== 0); } - res.spj = list.includes('spj.js'); + res.spj = list.includes('spj.js') || list.some(s => s.startsWith('spj_')); return res; }, ansiToHTML(s) {