Changed minimal limit from 10% to 2%

This commit is contained in:
Thomas Basler 2022-10-31 15:23:09 +01:00
parent 3612dd3d52
commit 860710c47a

View File

@ -376,7 +376,7 @@ export default defineComponent({
currentLimitList: {} as LimitStatus,
targetLimitList: {} as LimitConfig,
targetLimitMin: 10,
targetLimitMin: 2,
targetLimitMax: 100,
targetLimitTypeText: "Relative (%)",
targetLimitType: 1,
@ -585,7 +585,7 @@ export default defineComponent({
onSelectType(type: number) {
if (type == 1) {
this.targetLimitTypeText = "Relative (%)";
this.targetLimitMin = 10;
this.targetLimitMin = 2;
this.targetLimitMax = 100;
} else {
this.targetLimitTypeText = "Absolute (W)";