From 052ff09bffdc6f98db17d8a4f5fb93246fceab7f Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Sat, 22 Apr 2017 21:19:34 +0200 Subject: [PATCH] Fix JS syntax error in variable declaration Declarations in javascript should end with a semicolon. This otherwise causes strange and hard to debug issues in minified js assets. Change-Id: I821a71b169b86e9f0318cbae4c6cc654cb97a4a7 --- .../project/data_processing/js/data_processing.job_launching.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sahara_dashboard/content/data_processing/static/dashboard/project/data_processing/js/data_processing.job_launching.js b/sahara_dashboard/content/data_processing/static/dashboard/project/data_processing/js/data_processing.job_launching.js index 000510b7..c13308bb 100644 --- a/sahara_dashboard/content/data_processing/static/dashboard/project/data_processing/js/data_processing.job_launching.js +++ b/sahara_dashboard/content/data_processing/static/dashboard/project/data_processing/js/data_processing.job_launching.js @@ -18,4 +18,4 @@ horizon.job_launching_warning = { } } -} +};