SettingsStore: Added debug log for "isFrame"

This commit is contained in:
Ilya Oleshko 2023-11-29 10:03:56 +03:00
parent ef8cef110f
commit f81867469a

View File

@ -938,6 +938,7 @@ class SettingsStore {
};
get isFrame() {
console.log("get isFrame:", this.frameConfig?.name === window.name);
return this.frameConfig?.name === window.name;
}