Refactoring

This commit is contained in:
Alexey Koshelev
2026-02-09 11:22:54 +03:00
parent 144b94a30b
commit 200420cce1

View File

@ -272,7 +272,9 @@ define([
this.appConfig = options.mode;
this.tabOptions = {
canCommentResolve: options?.tabOptions?.canCommentResolve ?? true
canCommentResolve: options.tabOptions && options.tabOptions.canCommentResolve != undefined
? options.tabOptions.canCommentResolve
: true
}
this.lockedControls = [];
var filter = Common.localStorage.getKeysFilter();