update highlight
This commit is contained in:
parent
d94101c729
commit
b9a81a736e
|
|
@ -116,11 +116,11 @@ export default class LogsController {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
listLine.map((u) => {
|
listLine.map(async(u) => {
|
||||||
if (
|
if (
|
||||||
listExcludeErr.filter((err) => data[u - 1].includes(err)).length === 0
|
listExcludeErr.filter((err) => data[u - 1].includes(err)).length === 0
|
||||||
) {
|
) {
|
||||||
if (MODEL_SPECIAL.filter((i) => data[u - 1].includes(i)).length > 0) {
|
if (MODEL_SPECIAL.filter((i) => data[u - 1].includes(i)).length > 0 || await checkSpecialVersion(line)!=="") {
|
||||||
modelSpecialDetected.push(data[u - 1]);
|
modelSpecialDetected.push(data[u - 1]);
|
||||||
} else {
|
} else {
|
||||||
issueSpecialDetected.push(data[u - 1]);
|
issueSpecialDetected.push(data[u - 1]);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue