From 1992a967711438df82c0b4e1805ce8f69cd25c52 Mon Sep 17 00:00:00 2001 From: HappyZ Date: Wed, 24 May 2023 21:31:10 -0700 Subject: [PATCH] [FE] fixes issue content was never cleared in history --- templates/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/index.html b/templates/index.html index 33f3647..8921d60 100644 --- a/templates/index.html +++ b/templates/index.html @@ -502,7 +502,7 @@ var $joblist = $('#joblist'); var $grid = $('
'); - $joblist.append($grid); + $joblist.html($grid); for (var i = 0; i < jobsLength; i++) { var element = ("
" + (response.jobs[i].img ? ("
") : "") +