diff --git a/src/Components/LogCard/index.js b/src/Components/LogCard/index.js index 1422d40..53b29ba 100644 --- a/src/Components/LogCard/index.js +++ b/src/Components/LogCard/index.js @@ -150,6 +150,11 @@ export default function LogCard({ const filteredLogs = logs.filter((log) => { const logType = log.charAt(0); + // some other logs which have no type defined + if (logType !== "I" && logType !== "W" && logType !== "E") { + return true; + } + return ( (checkboxInfoChecked && logType === "I") || (checkboxWarningChecked && logType === "W") ||