We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 89cfbf4 + 39f51d2 commit 4097da3Copy full SHA for 4097da3
ui/packages/shared/pages/Instance/stores/Main.ts
@@ -90,7 +90,7 @@ export class MainStore {
90
this.instance = null
91
this.isReloadingInstance = true
92
this.loadInstance(instanceId, false).then(() => {
93
- if (this.instance?.url) {
+ if (this.instance?.createdAt && this.instance?.url || !this.instance?.createdAt) {
94
this.snapshots.load(instanceId)
95
}
96
})
@@ -109,7 +109,7 @@ export class MainStore {
109
if (this.api.refreshInstance)
110
this.api.refreshInstance({ instanceId: instanceId })
111
112
113
114
115
0 commit comments