goblin-gadgets 4.2.0 → 4.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -71,7 +71,6 @@ class TabNavigation extends Elf {
|
|
|
71
71
|
* @returns {Promise<this>}
|
|
72
72
|
*/
|
|
73
73
|
async create(id, desktopId, views) {
|
|
74
|
-
this.desktopId = desktopId;
|
|
75
74
|
this.views = views;
|
|
76
75
|
this.logic.create(id);
|
|
77
76
|
const firstTab = Object.keys(views)[0];
|
|
@@ -98,7 +97,7 @@ class TabNavigation extends Elf {
|
|
|
98
97
|
const serviceArgs = view.serviceArgs || [];
|
|
99
98
|
await new ServiceClass(this).create(
|
|
100
99
|
serviceId,
|
|
101
|
-
this.
|
|
100
|
+
await this.winDesktopId(),
|
|
102
101
|
...serviceArgs
|
|
103
102
|
);
|
|
104
103
|
this.loadedServices.set(tab, serviceId);
|