Skip to content

Commit 16d9a21

Browse files
committed
[UI] Query logs using descending and show timestamp per log entry #2892
1 parent 53eba88 commit 16d9a21

File tree

1 file changed

+1
-1
lines changed
  • frontend/src/pages/Runs/Details/Logs

1 file changed

+1
-1
lines changed

frontend/src/pages/Runs/Details/Logs/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export const Logs: React.FC<IProps> = ({ className, projectName, runName, jobSub
7979
.then((response) => {
8080
saveScrollPositionByBottom();
8181
const reversed = response.logs.toReversed();
82-
setLogsData((old) => [...decodeLogs(reversed), ...old]);
82+
setLogsData((old) => [...reversed, ...old]);
8383
nextTokenRef.current = response.next_token;
8484
setIsLoading(false);
8585
})

0 commit comments

Comments
 (0)