From d59186c8d4ba1a2525a9d289697240dbf7d1ddc9 Mon Sep 17 00:00:00 2001 From: Fluffy <65877598+FluffyGhoster@users.noreply.github.com> Date: Mon, 26 Jun 2023 19:15:08 +0200 Subject: [PATCH] Fix a style issue --- html/changelogs/fluffyghost-tgchat_namespace_fix.yml | 1 + tgui/packages/common/storage.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/html/changelogs/fluffyghost-tgchat_namespace_fix.yml b/html/changelogs/fluffyghost-tgchat_namespace_fix.yml index 05a69adf7bf..83478e57306 100644 --- a/html/changelogs/fluffyghost-tgchat_namespace_fix.yml +++ b/html/changelogs/fluffyghost-tgchat_namespace_fix.yml @@ -39,3 +39,4 @@ delete-after: True # Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. changes: - bugfix: "The TGUI CI Linter does not like the use of var, turned it in a const declaration to make it happy." + - bugfix: "Prettified storage.js to make the linter happy." diff --git a/tgui/packages/common/storage.js b/tgui/packages/common/storage.js index 92e3ccd9518..7d0ca1ecaed 100644 --- a/tgui/packages/common/storage.js +++ b/tgui/packages/common/storage.js @@ -151,7 +151,7 @@ class IndexedDbBackend { } // Namespace for keys in storage, so we do not share storage with other servers. -const namespace = "AURORASTATION_"; +const namespace = 'AURORASTATION_'; /** * Web Storage Proxy object, which selects the best backend available