From 85b0fdc33f95fff9639b3ea3a7b12d822a199d6d Mon Sep 17 00:00:00 2001 From: Dmitrii Vershinin Date: Tue, 28 Oct 2025 18:56:34 +0500 Subject: [PATCH] chore: strict check --- web/documentserver-example/nodejs/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/documentserver-example/nodejs/app.js b/web/documentserver-example/nodejs/app.js index a89427a1..28b1fbd3 100755 --- a/web/documentserver-example/nodejs/app.js +++ b/web/documentserver-example/nodejs/app.js @@ -1265,7 +1265,7 @@ app.get('/editor', (req, res) => { // define a handler for editing document // generate random code for plugin security dynamically let pluginsConfig; - if (mode == 'edit') { + if (mode === 'edit') { const updatedOptions = {}; if (plugins.options) { for (const pluginGuid in plugins.options) {