From 4570dca841632d80d36f886d712ac6fe7b3f3c08 Mon Sep 17 00:00:00 2001 From: Sampo Juustila Date: Sat, 29 Jun 2024 13:52:43 +0300 Subject: [PATCH] feat: show jump drive temperature ranges when changing target --- src/views/JumpDrive.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/JumpDrive.vue b/src/views/JumpDrive.vue index 53e3cc6..5aa9b46 100644 --- a/src/views/JumpDrive.vue +++ b/src/views/JumpDrive.vue @@ -649,7 +649,7 @@ export default { } }, changeTargetTemperature() { - const target = prompt(`Enter target temperature in Kelvin (current ${this.jump.jump_drive_target_temp}):`); + const target = prompt(`Enter target temperature in Kelvin (current ${this.jump.jump_drive_target_temp}). Nominal <3900, High 3900-5200, Critical >5200:`); if (target && target.match(/^[0-9]+$/)) { this.write({ jump_drive_target_temp: parseInt(target, 10) }, true); }