diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2023-08-06 21:56:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-06 21:56:05 +0200 |
commit | f17c346919a32e481be2d5ee322f76dae8c03e96 (patch) | |
tree | 0c14bf144eb67e20c39694bbc580ce06c9f7b5c3 /src-vue/src/views/RepairView.vue | |
parent | b7accedbbc99cf383de5b874094eaa583670a165 (diff) | |
download | FlightCore-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/RepairView.vue')
-rw-r--r-- | src-vue/src/views/RepairView.vue | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src-vue/src/views/RepairView.vue b/src-vue/src/views/RepairView.vue index 65c533d2..ce7e154d 100644 --- a/src-vue/src/views/RepairView.vue +++ b/src-vue/src/views/RepairView.vue @@ -17,6 +17,10 @@ {{ $t('settings.repair.window.force_reinstall_ns') }} </el-button> + <el-button type="primary" @click="killNorthstar"> + {{ $t('settings.repair.window.kill_northstar_process') }} + </el-button> + <el-button type="primary" @click="disableModsettingsMod"> {{ $t('settings.repair.window.disable_modsettings') }} </el-button> @@ -121,6 +125,16 @@ 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); + }); + }, }, watch: { // Lang value is propagated to repair view after it's mounted, so we need to watch |