From d016f029cccf761db8660f88f598a7d94a7a7bd4 Mon Sep 17 00:00:00 2001 From: Daniel Garcia Briseno <94071409+dgarciabriseno@users.noreply.github.com> Date: Tue, 17 Oct 2023 13:37:02 -0400 Subject: [PATCH] Use string concat instead of interpolation --- resources/js/Patches/broken_screenshots_493.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/js/Patches/broken_screenshots_493.js b/resources/js/Patches/broken_screenshots_493.js index 2befcf496..d608bd4de 100644 --- a/resources/js/Patches/broken_screenshots_493.js +++ b/resources/js/Patches/broken_screenshots_493.js @@ -25,7 +25,7 @@ class _BrokenScreenshotNotifier { header: "Just now" }; - let message = `Due to some recent database issues, we were unable to store ${this.num_broken_screenshots} of your recent screenshots. These have been removed from your screenshot history.`; + let message = "Due to some recent database issues, we were unable to store " + this.num_broken_screenshots + " of your recent screenshots. These have been removed from your screenshot history."; // Schedule notification to appear when the notification system is ready. $(document).bind("helioviewer-ready", () => {