aboutsummaryrefslogtreecommitdiff
path: root/src-vue/src/views/DeveloperView.vue
diff options
context:
space:
mode:
authorGeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com>2023-08-06 21:56:05 +0200
committerGitHub <noreply@github.com>2023-08-06 21:56:05 +0200
commitf17c346919a32e481be2d5ee322f76dae8c03e96 (patch)
tree0c14bf144eb67e20c39694bbc580ce06c9f7b5c3 /src-vue/src/views/DeveloperView.vue
parentb7accedbbc99cf383de5b874094eaa583670a165 (diff)
downloadFlightCore-f17c346919a32e481be2d5ee322f76dae8c03e96.tar.gz
FlightCore-f17c346919a32e481be2d5ee322f76dae8c03e96.zip
feat: Move button for killing NS to RepairView (#487)
* feat: Move button for killing NS to RepairView * i18n: Add German translation
Diffstat (limited to 'src-vue/src/views/DeveloperView.vue')
-rw-r--r--src-vue/src/views/DeveloperView.vue14
1 files changed, 0 insertions, 14 deletions
diff --git a/src-vue/src/views/DeveloperView.vue b/src-vue/src/views/DeveloperView.vue
index de83c9a8..c87e4236 100644
--- a/src-vue/src/views/DeveloperView.vue
+++ b/src-vue/src/views/DeveloperView.vue
@@ -74,10 +74,6 @@
Get installed mods
</el-button>
- <el-button type="primary" @click="killNorthstar">
- Kill Northstar
- </el-button>
-
<h3>Testing</h3>
<pull-requests-selector />
@@ -228,16 +224,6 @@ export default defineComponent({
showErrorNotification(error);
});
},
- async killNorthstar() {
- await invoke("kill_northstar")
- .then((message) => {
- // Just a visual indicator that it worked
- showNotification('Success');
- })
- .catch((error) => {
- showErrorNotification(error);
- });
- },
async installMod() {
let mod_to_install = this.mod_to_install_field_string;
await invoke<string>("install_mod_caller", { gameInstall: this.$store.state.game_install, thunderstoreModString: mod_to_install }).then((message) => {