Changed minimal limit from 10% to 2%
This commit is contained in:
parent
3612dd3d52
commit
860710c47a
@ -376,7 +376,7 @@ export default defineComponent({
|
|||||||
currentLimitList: {} as LimitStatus,
|
currentLimitList: {} as LimitStatus,
|
||||||
targetLimitList: {} as LimitConfig,
|
targetLimitList: {} as LimitConfig,
|
||||||
|
|
||||||
targetLimitMin: 10,
|
targetLimitMin: 2,
|
||||||
targetLimitMax: 100,
|
targetLimitMax: 100,
|
||||||
targetLimitTypeText: "Relative (%)",
|
targetLimitTypeText: "Relative (%)",
|
||||||
targetLimitType: 1,
|
targetLimitType: 1,
|
||||||
@ -585,7 +585,7 @@ export default defineComponent({
|
|||||||
onSelectType(type: number) {
|
onSelectType(type: number) {
|
||||||
if (type == 1) {
|
if (type == 1) {
|
||||||
this.targetLimitTypeText = "Relative (%)";
|
this.targetLimitTypeText = "Relative (%)";
|
||||||
this.targetLimitMin = 10;
|
this.targetLimitMin = 2;
|
||||||
this.targetLimitMax = 100;
|
this.targetLimitMax = 100;
|
||||||
} else {
|
} else {
|
||||||
this.targetLimitTypeText = "Absolute (W)";
|
this.targetLimitTypeText = "Absolute (W)";
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user