From abd13658431a4b9642fd5c946ae97b587ec28261 Mon Sep 17 00:00:00 2001 From: Anurag Vishwakarma Date: Fri, 9 Feb 2024 18:48:21 +0530 Subject: [PATCH] Fixed Project List Fetching error --- Sources/SiteScripts/getProjects.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Sources/SiteScripts/getProjects.js b/Sources/SiteScripts/getProjects.js index ad6d152..8948e11 100644 --- a/Sources/SiteScripts/getProjects.js +++ b/Sources/SiteScripts/getProjects.js @@ -47,4 +47,9 @@ let showprojects = (() => { }); }); -showprojects(); \ No newline at end of file +showprojects(); + +// This function is written for fetching projects again for prevention of side effects in AJAX Requests. +setTimeout(() => { + showprojects(); +}, 2000); \ No newline at end of file