Compare commits
2 Commits
ed1efbddeb
...
4d6a2fdd4d
| Author | SHA1 | Date |
|---|---|---|
|
|
4d6a2fdd4d | |
|
|
02d2ef054b |
|
|
@ -3,4 +3,4 @@
|
||||||
**/obj
|
**/obj
|
||||||
*.DotSettings.user
|
*.DotSettings.user
|
||||||
**/.idea/
|
**/.idea/
|
||||||
|
**/.env
|
||||||
|
|
|
||||||
|
|
@ -452,6 +452,8 @@ export interface JSONRecordData {
|
||||||
Battery2Soh:number;
|
Battery2Soh:number;
|
||||||
PvPower:number;
|
PvPower:number;
|
||||||
ConsumptionPower:number;
|
ConsumptionPower:number;
|
||||||
|
WorkingMode?:string;
|
||||||
|
OperatingMode?:string;
|
||||||
};
|
};
|
||||||
|
|
||||||
AcDcGrowatt: {
|
AcDcGrowatt: {
|
||||||
|
|
|
||||||
|
|
@ -339,7 +339,11 @@ function SodioHomeInstallation(props: singleInstallationProps) {
|
||||||
fontSize: '14px'
|
fontSize: '14px'
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{values.Config.OperatingPriority}
|
{props.current_installation.device === 4
|
||||||
|
? values.InverterRecord?.WorkingMode
|
||||||
|
: props.current_installation.device === 3
|
||||||
|
? values.InverterRecord?.OperatingMode
|
||||||
|
: values.Config.OperatingPriority}
|
||||||
</Typography>
|
</Typography>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue