Skip to content

Commit

Permalink
Merge pull request #1597 from pkuehnel/fix/powerFlowAutoShrink
Browse files Browse the repository at this point in the history
fix(PowerFlowComponent): autoshrink on too small screen
  • Loading branch information
pkuehnel authored Nov 1, 2024
2 parents 70c2ebe + 9e6de4d commit c49ecb9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

@if (_pvValues != default)
{
<div class="text-center">
<div class="d-flex justify-content-center align-items-center">
<svg width="420" height="@SvgHeight" viewBox="@($"0 0 420 {SvgHeight}")">
<!-- Lines -->
<!-- Grid to Solar -->
Expand Down
4 changes: 2 additions & 2 deletions TeslaSolarCharger/Shared/Dtos/CarBasicConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ public CarBasicConfiguration(int id, string? name)
public int ApiRefreshIntervalSeconds { get; set; }
[HelperText("Needed to send commands via BLE to the car. An example value would be `http://raspible:7210/`")]
public string? BleApiBaseUrl { get; set; }
[HelperText("If enabled, some data will be transferred via Fleet Telemetry. This improves the delay in the TSC detection of plugin and out of the car, as well as changes in the charging speed. Note: All data transferred via Fleet Telemetry passes my server.")]
[HelperText("If enabled, some data will be transferred via Fleet Telemetry. This improves the delay in the TSC detection of plugin and out of the car, as well as changes in the charging speed. Note: All data transferred via Fleet Telemetry passes my server. For now, the fleet telemetry fields ModuleTempMin, ModuleTempMax,ChargeAmps, ChargeCurrentRequest, ChargeCurrentRequestMax, DetailedChargeState are requested.")]
public bool UseFleetTelemetry { get; set; }

[HelperText("If disabled TSC takes up to 8 minutes to detect if the car is at home. If you do not mind that your car location data passes my server do not disable this option.")]
[HelperText("Enabling this results in additionally streaming the field Location over my server. If disabled and TeslaMate is not selected as DataSource TSC takes up to 8 minutes to detect if the car is at home. If you do not mind that your car location data passes my server, do not disable this option.")]
public bool UseFleetTelemetryForLocationData { get; set; } = true;
}

0 comments on commit c49ecb9

Please sign in to comment.