diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2023-05-09 23:35:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-09 23:35:04 +0200 |
commit | 007e32fd632da33ea1b1442f9a55f6ad008ad177 (patch) | |
tree | 32de00dddb0a5ea3cdbf0f4c24db92f6a0713e32 /src-vue/src/views/DeveloperView.vue | |
parent | 1ce900ca2d5cf91ae410c2ec918e1431aa15a677 (diff) | |
download | FlightCore-007e32fd632da33ea1b1442f9a55f6ad008ad177.tar.gz FlightCore-007e32fd632da33ea1b1442f9a55f6ad008ad177.zip |
style: Partially autoformat Vue source files (#326)
* style: Add/remove spaces where applicable
* style: Add missing newlines
* style: Fix indentation
* style: Add newlines between CSS classes
Diffstat (limited to 'src-vue/src/views/DeveloperView.vue')
-rw-r--r-- | src-vue/src/views/DeveloperView.vue | 12 |
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"); |