From d2ec9627fdbc6e45567742a2e0307b92cc6c7bda Mon Sep 17 00:00:00 2001 From: Ryan Peters Date: Fri, 13 Aug 2021 15:12:48 +0000 Subject: [PATCH] adjust formatting of css color assignment --- BinaryDad.Coding/wwwroot/js/hub.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BinaryDad.Coding/wwwroot/js/hub.js b/BinaryDad.Coding/wwwroot/js/hub.js index 935fa33..1d6f489 100644 --- a/BinaryDad.Coding/wwwroot/js/hub.js +++ b/BinaryDad.Coding/wwwroot/js/hub.js @@ -27,7 +27,7 @@ let color = $yourColorText.val(); - $yourNameText.css('color', `${color}`); + $yourNameText.css('color', color); connection.invoke('SaveName', $yourNameText.val(), color); };