diff --git a/dashboard/src/components/AppInstallDialog.vue b/dashboard/src/components/AppInstallDialog.vue index a4137da01..cf062bc64 100644 --- a/dashboard/src/components/AppInstallDialog.vue +++ b/dashboard/src/components/AppInstallDialog.vue @@ -128,7 +128,7 @@ onMounted(async () => { defineExpose({ open(a) { - step.value = STEP.INSTALL; + step.value = STEP.DETAILS; app.value = a; manifest.value = a.manifest; diff --git a/dashboard/src/components/AppstoreView.vue b/dashboard/src/components/AppstoreView.vue index 24c06aa2c..0fdf3ab83 100644 --- a/dashboard/src/components/AppstoreView.vue +++ b/dashboard/src/components/AppstoreView.vue @@ -31,7 +31,7 @@ const appstoreModel = AppstoreModel.create(API_ORIGIN, localStorage.token); const ready = ref(false); const apps = ref([]); -const search = ref('vpn'); +const search = ref(''); const filteredApps = computed(() => { if (!search.value) return apps.value;