From 55cb4425ce338ab42d92a97b3ee5fd82b5dbccf4 Mon Sep 17 00:00:00 2001 From: Patrizio Bekerle <patrizio.bekerle@tugraz.at> Date: Wed, 25 Sep 2019 13:47:33 +0200 Subject: [PATCH] Fix missing semicolon --- packages/common/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/common/utils.js b/packages/common/utils.js index f5800185..e4bae26b 100644 --- a/packages/common/utils.js +++ b/packages/common/utils.js @@ -203,7 +203,7 @@ export const initAssetBaseURL = (id) => { if (document.currentScript && document.currentScript.src) { _assetBaseURL = document.currentScript.src; } -} +}; /** * Get an absolute path for assets given a relative path to the js bundle. -- GitLab