diff --git a/static/js/views.js b/static/js/views.js index 4323fd0..c86a31d 100644 --- a/static/js/views.js +++ b/static/js/views.js @@ -166,7 +166,7 @@ const SelectPackages = { const InstallPackages = { template: `
You can find your installed applications in your start menu.
+You can find your installed applications in your start menu.
@@ -299,7 +306,8 @@ const CompleteView = { `, data: function() { return { - was_install: !this.$route.params.uninstall + was_install: !this.$route.params.uninstall, + was_update: this.$route.params.update } }, methods: { @@ -353,7 +361,7 @@ const ModifyView = { }, methods: { update: function() { - router.push("/install/regular"); + router.push("/install/update"); }, modify_packages: function() { router.push("/packages"); @@ -393,7 +401,7 @@ const router = new VueRouter({ component: ErrorView }, { - path: '/complete/:uninstall', + path: '/complete/:uninstall/:update', name: 'complete', component: CompleteView },