From 0afb3b303ad59507a9818c19d71b8b99e255f841 Mon Sep 17 00:00:00 2001 From: Hargun Kaur Date: Mon, 1 Jul 2024 00:06:31 +0530 Subject: [PATCH 1/2] added hyperlinks to integration cards Signed-off-by: Hargun Kaur --- integrations/index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/integrations/index.html b/integrations/index.html index de126e58a3..85b6078d4c 100644 --- a/integrations/index.html +++ b/integrations/index.html @@ -256,6 +256,7 @@

const element = document.createElement("div"); element.className = "element"; element.style.backgroundColor = "rgba(255, 255, 255," + "1" + ")"; + element.onclick = () => window.open(table[i].permalink, "_blank"); const symbol = document.createElement("div"); symbol.className = "symbol"; From ab0e7a3364a25923afca575d7d1c455b7a9a93b9 Mon Sep 17 00:00:00 2001 From: Lee Calcote Date: Tue, 2 Jul 2024 05:33:15 -0500 Subject: [PATCH 2/2] Update integrations/index.html Signed-off-by: Lee Calcote --- integrations/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrations/index.html b/integrations/index.html index 85b6078d4c..38ba6d71f7 100644 --- a/integrations/index.html +++ b/integrations/index.html @@ -256,7 +256,7 @@

const element = document.createElement("div"); element.className = "element"; element.style.backgroundColor = "rgba(255, 255, 255," + "1" + ")"; - element.onclick = () => window.open(table[i].permalink, "_blank"); + element.onclick = () => window.open(table[i].permalink, "_self"); const symbol = document.createElement("div"); symbol.className = "symbol";