From 024ca111a9239f574f290ca741d0c2e72aa0a224 Mon Sep 17 00:00:00 2001 From: Oscar Krause Date: Wed, 18 Jan 2023 12:04:42 +0100 Subject: [PATCH] fixes --- app/static/assets/js/helper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/static/assets/js/helper.js b/app/static/assets/js/helper.js index 5668d14..957f860 100644 --- a/app/static/assets/js/helper.js +++ b/app/static/assets/js/helper.js @@ -122,6 +122,6 @@ async function deleteLease(lease_ref) { if (lease_ref === null || lease_ref === "") return let xhr = new XMLHttpRequest(); - xhr.open("DELETE", `/-/lease/${{lease_ref}}`, true); + xhr.open("DELETE", `/-/lease/${lease_ref}`, true); xhr.send(); }