From 70c3a381018e7aca75f37086ba4702688ba5b28c Mon Sep 17 00:00:00 2001 From: GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> Date: Thu, 19 Jan 2023 17:03:25 +0100 Subject: fix: Fix wrong comments (#138) Typo and referencing wrong functionality --- src-vue/src/views/DeveloperView.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src-vue') diff --git a/src-vue/src/views/DeveloperView.vue b/src-vue/src/views/DeveloperView.vue index f199ddaf..6770caaa 100644 --- a/src-vue/src/views/DeveloperView.vue +++ b/src-vue/src/views/DeveloperView.vue @@ -162,7 +162,7 @@ export default defineComponent({ } as GameInstall; let mod_to_install = this.mod_to_install_field_string; await invoke("install_mod_caller", { gameInstall: game_install, thunderstoreModString: mod_to_install }).then((message) => { - // Show user notificatio if mod install completed. + // Show user notification if mod install completed. ElNotification({ title: `Installed ${mod_to_install}`, message: message as string, @@ -185,7 +185,7 @@ export default defineComponent({ install_type: this.$store.state.install_type } as GameInstall; await invoke("clean_up_download_folder_caller", { gameInstall: game_install, force: true }).then((message) => { - // Show user notificatio if mod install completed. + // Show user notification if task completed. ElNotification({ title: `Done`, message: `Done`, -- cgit v1.2.3