Blob Blame History Raw
From e25a3c266ab957f41308e30350b92fdc7a611e9f Mon Sep 17 00:00:00 2001
From: Athos Ribeiro <athoscr@fedoraproject.org>
Date: Wed, 4 Mar 2020 10:14:40 +0100
Subject: [PATCH] Fix row cell index for server searching feature

The HTML template for repositories carries the container image name in
the first cell of each entry in the table. This patch adjusts the JS
search function to fetch the image name information from that cell.

Signed-off-by: Athos Ribeiro <athoscr@fedoraproject.org>
---
 server/static/js/scripts.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server/static/js/scripts.js b/server/static/js/scripts.js
index 0e8dd867..d36e1624 100644
--- a/server/static/js/scripts.js
+++ b/server/static/js/scripts.js
@@ -23,7 +23,7 @@ function prettyDate(time){
 function search(search_val){
     var suche = search_val.toLowerCase();
     var table = document.getElementById("directory");
-    var cellNr = 1;
+    var cellNr = 0;
     var ele;
     for (var r = 1; r < table.rows.length; r++){
         ele = table.rows[r].cells[cellNr].innerHTML.replace(/<[^>]+>/g,"");
-- 
2.26.2