From a5dea723f4bbd4ba5fe22b3c10f825fc3ebc03ca Mon Sep 17 00:00:00 2001 From: Anoir Ben Tanfous Date: Fri, 17 Mar 2023 16:54:47 -0400 Subject: [PATCH] fix layout order make it shows after the release section --- chrome/content.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content.js b/chrome/content.js index d796618..7cbc1bf 100644 --- a/chrome/content.js +++ b/chrome/content.js @@ -69,7 +69,7 @@ function addSimilarRepo(repos) { if (borderGrid.children.length <= 1) { borderGrid.appendChild(fragment.firstChild) } else { - borderGrid.insertBefore(fragment.firstChild, borderGrid.children[1]) + borderGrid.insertBefore(fragment.firstChild, borderGrid.children[2]) } }