diff --git a/frontend/src/pages/instance/index.vue b/frontend/src/pages/instance/index.vue index b94e9f982d..a257c47dcd 100644 --- a/frontend/src/pages/instance/index.vue +++ b/frontend/src/pages/instance/index.vue @@ -186,6 +186,9 @@ export default { async loadInstance () { const instanceId = this.$route.params.id + if (!instanceId) { + return + } try { const data = await InstanceApi.getInstance(instanceId) this.instance = { ...{ deviceSettings: {} }, ...this.instance, ...data }