We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33b1109 commit 2240ad1Copy full SHA for 2240ad1
javascript/engine-js/src/view/ViewController.ts
@@ -157,7 +157,7 @@ export class ViewController {
157
* @param scopeId
158
*/
159
getUserEntryValue(key: string, scopeId: string){
160
- if (!this.userEntryValues[scopeId]?.[key])
+ if (this.userEntryValues[scopeId]?.[key] === undefined)
161
return undefined;
162
163
return this.userEntryValues[scopeId][key];
0 commit comments