From 7bdf6e025f1fbbbc7af65f80ff7aa5922ff8e252 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Tue, 19 Jun 2018 13:06:02 +0200 Subject: dashboard/app: fix table sorting on firefox Under Firefox 60 browser, sort operation does not work and ReferenceError: event is not defined error message is printed in the Web Console window. Let's explicitly pass an object reference to the sortTable function. Credit goes to Tetsuo Handa. --- dashboard/app/templates.html | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'dashboard/app/templates.html') diff --git a/dashboard/app/templates.html b/dashboard/app/templates.html index 7ad794cf3..772135fa7 100644 --- a/dashboard/app/templates.html +++ b/dashboard/app/templates.html @@ -48,22 +48,22 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the {{$.Caption}}: {{if $.ShowNamespace}} - Kernel + Kernel {{end}} - Title - Repro - Count - Last - Reported + Title + Repro + Count + Last + Reported {{if $.ShowPatch}} - Closed - Patch + Closed + Patch {{end}} {{if $.ShowPatched}} - Patched + Patched {{end}} {{if $.ShowStatus}} - Status + Status {{end}} {{range $b := .Bugs}} -- cgit mrf-deployment