Compare commits

..

No commits in common. "4d6a2fdd4dc9b4f267060a261346dc3428265735" and "ed1efbddeb1625847f1a30ae6e5cca2cd0305fb9" have entirely different histories.

3 changed files with 2 additions and 8 deletions

2
.gitignore vendored
View File

@ -3,4 +3,4 @@
**/obj **/obj
*.DotSettings.user *.DotSettings.user
**/.idea/ **/.idea/
**/.env

View File

@ -452,8 +452,6 @@ export interface JSONRecordData {
Battery2Soh:number; Battery2Soh:number;
PvPower:number; PvPower:number;
ConsumptionPower:number; ConsumptionPower:number;
WorkingMode?:string;
OperatingMode?:string;
}; };
AcDcGrowatt: { AcDcGrowatt: {

View File

@ -339,11 +339,7 @@ function SodioHomeInstallation(props: singleInstallationProps) {
fontSize: '14px' fontSize: '14px'
}} }}
> >
{props.current_installation.device === 4 {values.Config.OperatingPriority}
? values.InverterRecord?.WorkingMode
: props.current_installation.device === 3
? values.InverterRecord?.OperatingMode
: values.Config.OperatingPriority}
</Typography> </Typography>
</div> </div>
)} )}