From 9e70464425eebd2fa590c49a04f09e407d4bc3d4 Mon Sep 17 00:00:00 2001 From: Jeongjun Park Date: Sun, 27 Apr 2025 19:34:10 +0900 Subject: dashboard/app/templates: fix incorrect use of *Sort function We are using incorrect *Sort functions when using some sortTable functions. Also, this is causing the current syz repro sort to not work. Thereforce we need to modify it to use the correct *Sort functions and remove unnecessary tab spaces to pass the intended text to the *Sort functions. --- dashboard/app/templates/templates.html | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'dashboard') diff --git a/dashboard/app/templates/templates.html b/dashboard/app/templates/templates.html index 571e262cd..66db3a4e6 100644 --- a/dashboard/app/templates/templates.html +++ b/dashboard/app/templates/templates.html @@ -433,8 +433,8 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the Syzkaller Config Log - Report - Syz repro + Report + Syz repro C repro VM info Assets (help?) @@ -447,16 +447,12 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the {{formatTime $b.Time}} {{$b.KernelAlias}} - {{link $b.KernelCommitLink (formatTagHash $b.KernelCommit)}} + {{link $b.KernelCommitLink (formatTagHash $b.KernelCommit)}} {{link $b.SyzkallerCommitLink (formatShortHash $b.SyzkallerCommit)}} {{if $b.KernelConfigLink}}.config{{end}} {{if $b.LogLink}}{{if $b.LogHasStrace}}strace{{else}}console{{end}} log{{end}} {{if $b.ReportLink}}report{{end}} - - {{if $b.ReproSyzLink}}syz{{end}} - {{if $b.ReproLogLink}} / log{{end}} - + {{if $b.ReproSyzLink}}syz{{end}}{{if $b.ReproLogLink}} / log{{end}} {{if $b.ReproCLink}}C{{end}} {{if $b.MachineInfoLink}}info{{end}} {{range $i, $asset := .Assets}} -- cgit mrf-deployment