trim search results

This commit is contained in:
x032205
2025-10-03 18:51:15 -04:00
parent 57eb8af155
commit be566fa37d

View File

@@ -167,10 +167,10 @@ export const PamSessionRow = ({ session, search, filteredCommandLogs }: Props) =
</div>
<div className="font-mono">
<HighlightText text={log.input} highlight={search} />
<HighlightText text={log.input.trim()} highlight={search} />
</div>
<div className="font-mono text-bunker-300">
<HighlightText text={log.output} highlight={search} />
<HighlightText text={log.output.trim()} highlight={search} />
</div>
</div>
))}