From 068211a72bce2d9df0fa6adef0028d2e98f5aaa8 Mon Sep 17 00:00:00 2001
From: Patrick Jentsch <p.jentsch@uni-bielefeld.de>
Date: Wed, 4 Oct 2023 13:48:10 +0200
Subject: [PATCH] add missing semicolons

---
 app/static/js/requests/jobs.js | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/app/static/js/requests/jobs.js b/app/static/js/requests/jobs.js
index 68f06987..6a50463d 100644
--- a/app/static/js/requests/jobs.js
+++ b/app/static/js/requests/jobs.js
@@ -11,7 +11,7 @@ Requests.jobs.entity.delete = (jobId) => {
     method: 'DELETE'
   };
   return Requests.JSONfetch(input, init);
-} 
+};
 
 Requests.jobs.entity.log = (jobId) => {
   let input = `/jobs/${jobId}/log`;
@@ -19,7 +19,7 @@ Requests.jobs.entity.log = (jobId) => {
     method: 'GET'
   };
   return Requests.JSONfetch(input, init);
-}
+};
 
 Requests.jobs.entity.restart = (jobId) => {
   let input = `/jobs/${jobId}/restart`;
@@ -27,4 +27,4 @@ Requests.jobs.entity.restart = (jobId) => {
     method: 'POST'
   };
   return Requests.JSONfetch(input, init);
-} 
+};
-- 
GitLab