From 7c5844ef6ae38320b272db11036e176fcef1954f Mon Sep 17 00:00:00 2001 From: Chris Mills Date: Tue, 17 Oct 2023 07:45:53 +0100 Subject: [PATCH] Update single quotes to double quotes --- window-management-api/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/window-management-api/index.js b/window-management-api/index.js index a94e894e..d49ad86f 100644 --- a/window-management-api/index.js +++ b/window-management-api/index.js @@ -70,7 +70,7 @@ function openWindow(left, top, width, height, url) { const windowFeatures = `left=${left},top=${top},width=${width},height=${height}`; const windowRef = window.open( url, - '_blank', // needed for it to open in a new window + "_blank", // needed for it to open in a new window windowFeatures, );