aboutsummaryrefslogtreecommitdiff
path: root/src-vue/src/views/DeveloperView.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src-vue/src/views/DeveloperView.vue')
-rw-r--r--src-vue/src/views/DeveloperView.vue12
1 files changed, 6 insertions, 6 deletions
diff --git a/src-vue/src/views/DeveloperView.vue b/src-vue/src/views/DeveloperView.vue
index 77d43afc..ab3d2ba6 100644
--- a/src-vue/src/views/DeveloperView.vue
+++ b/src-vue/src/views/DeveloperView.vue
@@ -109,10 +109,10 @@ export default defineComponent({
},
data() {
return {
- mod_to_install_field_string : "",
- release_notes_text : "",
- first_tag: { label: '', value: {name: ''} },
- second_tag: { label: '', value: {name: ''} },
+ mod_to_install_field_string: "",
+ release_notes_text: "",
+ first_tag: { label: '', value: { name: '' } },
+ second_tag: { label: '', value: { name: '' } },
ns_release_tags: [] as TagWrapper[],
selected_project: "FlightCore",
project: [
@@ -201,7 +201,7 @@ export default defineComponent({
});
},
async getTags() {
- await invoke<TagWrapper[]>("get_list_of_tags", {project: this.selected_project})
+ await invoke<TagWrapper[]>("get_list_of_tags", { project: this.selected_project })
.then((message) => {
this.ns_release_tags = message;
showNotification("Done", "Fetched tags");
@@ -211,7 +211,7 @@ export default defineComponent({
});
},
async compareTags() {
- await invoke<string>("compare_tags", {project: this.selected_project, firstTag: this.firstTag.value, secondTag: this.secondTag.value})
+ await invoke<string>("compare_tags", { project: this.selected_project, firstTag: this.firstTag.value, secondTag: this.secondTag.value })
.then((message) => {
this.release_notes_text = message;
showNotification("Done", "Generated release notes");