goblin-magic 1.9.1 → 1.9.3
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
|
@@ -1132,7 +1132,10 @@ class MagicNavigation extends Elf {
|
|
|
1132
1132
|
if (!view) {
|
|
1133
1133
|
throw new Error(`Missing view for tab '${tabId}'`);
|
|
1134
1134
|
}
|
|
1135
|
-
|
|
1135
|
+
//Ensure new view infos without tabId
|
|
1136
|
+
const viewCopy = {...view};
|
|
1137
|
+
delete viewCopy.tabId;
|
|
1138
|
+
await this.openNewTab(viewCopy, windowId, panelId);
|
|
1136
1139
|
}
|
|
1137
1140
|
|
|
1138
1141
|
/**
|