From 69dba90e89f7e1669d537c0293f2c842dfb13edc Mon Sep 17 00:00:00 2001 From: Sulka Haro Date: Sun, 4 Jun 2023 17:58:39 +0300 Subject: [PATCH] Fix loading SBX --- lib/api2/properties.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/api2/properties.js b/lib/api2/properties.js index 30a167ab..61334f8a 100644 --- a/lib/api2/properties.js +++ b/lib/api2/properties.js @@ -39,7 +39,7 @@ function create (env, ctx) { var result = ctx.sbx.properties; if (selected.length > 0) { - result = _pick(sbx.properties, selected); + result = _pick(ctx.sbx.properties, selected); } result = env.settings.filteredSettings(result);