diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2023-01-19 17:03:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-19 17:03:25 +0100 |
commit | 70c3a381018e7aca75f37086ba4702688ba5b28c (patch) | |
tree | b73193a9b92c7ec8e0d0e65770f4b8bf94b6f104 /src-vue | |
parent | 8eab75a03ce56a8522fc7504ebb0f01acd1c8d30 (diff) | |
download | FlightCore-70c3a381018e7aca75f37086ba4702688ba5b28c.tar.gz FlightCore-70c3a381018e7aca75f37086ba4702688ba5b28c.zip |
fix: Fix wrong comments (#138)
Typo and referencing wrong functionality
Diffstat (limited to 'src-vue')
-rw-r--r-- | src-vue/src/views/DeveloperView.vue | 4 |
1 files changed, 2 insertions, 2 deletions
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`, |