Skip to content

Commit

Permalink
Fix Structure Matching with Entries
Browse files Browse the repository at this point in the history
  • Loading branch information
ckitsanelis committed Dec 1, 2023
1 parent 79d0996 commit 3b3b156
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/viewer/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,8 @@ export default class App extends React.Component<Props, State> {

if (logFile.headers[h].name.toLowerCase() === "timestamp") {
headerType = StructureHeaderColumnType.Unselected;
} else if (logFile.headers[h].name.toLowerCase() === "entry") {
headerType = StructureHeaderColumnType.Custom;
}

rules.forEach((rule) => {
Expand Down

0 comments on commit 3b3b156

Please sign in to comment.