aboutsummaryrefslogtreecommitdiff
path: root/src-vue/src
diff options
context:
space:
mode:
authorGeckoEidechse <gecko.eidechse+git@pm.me>2023-02-05 23:02:41 +0100
committerGeckoEidechse <gecko.eidechse+git@pm.me>2023-02-05 23:02:41 +0100
commit252c2ca40d805e8190b70e5599e44ee632a99778 (patch)
treec9f81cf8adcfb9c775bdcf48e9b49101831f715f /src-vue/src
parentb2904f389dfa230b5b790ca6856be51c40647c6d (diff)
downloadFlightCore-252c2ca40d805e8190b70e5599e44ee632a99778.tar.gz
FlightCore-252c2ca40d805e8190b70e5599e44ee632a99778.zip
refactor: Use wrapper function
that calls into dedicated parser functions and then assemble object inside the wrapper function
Diffstat (limited to 'src-vue/src')
-rw-r--r--src-vue/src/views/DeveloperView.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-vue/src/views/DeveloperView.vue b/src-vue/src/views/DeveloperView.vue
index 87ee7772..d8423450 100644
--- a/src-vue/src/views/DeveloperView.vue
+++ b/src-vue/src/views/DeveloperView.vue
@@ -225,7 +225,7 @@ export default defineComponent({
},
async parseGivenLogTextForMods() {
let current_log_content = this.log_content;
- await invoke<[ParsedLogResults]>("parse_given_log_text_for_installed_mods", { logText: current_log_content })
+ await invoke<[ParsedLogResults]>("parse_given_log_text", { logText: current_log_content })
.then((message) => {
console.log(message); // TODO present better here
// Show user notification if task completed.