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