diff --git a/panel/templates/panel/project.html b/panel/templates/panel/project.html
index c564830..50fb73e 100644
--- a/panel/templates/panel/project.html
+++ b/panel/templates/panel/project.html
@@ -296,6 +296,12 @@ function get_uuids_for_project(release, project) {
$( document ).ready(function() {
$('.project').each(function(){
var project = $(this).attr('id');
+
+ $.project.timer = setInterval(function() {
+ get_uuids_for_project('{{release}}', project);
+ }, $.project.interval);
+ console.log(project + ' get uuids setInterval ' + $.project.interval);
+
get_uuids_for_project('{{ release }}', project);
});
});
diff --git a/panel/templates/panel/release.html b/panel/templates/panel/release.html
index a53c685..407fec1 100644
--- a/panel/templates/panel/release.html
+++ b/panel/templates/panel/release.html
@@ -32,7 +32,7 @@
{% block extrajs %}