Skip to content

Commit

Permalink
feat: show jump drive temperature ranges when changing target
Browse files Browse the repository at this point in the history
  • Loading branch information
plaa committed Jun 29, 2024
1 parent a54fd61 commit 4570dca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/JumpDrive.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 4570dca

Please sign in to comment.