Skip to content

Commit

Permalink
Added show attribute units if is set in template views (#320)
Browse files Browse the repository at this point in the history
* Added show attribute units if is set in template views

* Test repair
  • Loading branch information
Brano5 authored Jun 27, 2024
1 parent 3152490 commit 92722ba
Show file tree
Hide file tree
Showing 34 changed files with 42 additions and 42 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
@typeparam T

<TemplateView Symbol="@OnlinerSymbol" FailureReason="@Onliner.AccessStatus.FailureReason">
<label for="@ComponentId">@Onliner.AttributeName</label>
<label for="@ComponentId">@Onliner.AttributeName@(string.IsNullOrWhiteSpace(Onliner.AttributeUnits) ? null : $" [{Onliner.AttributeUnits}]")</label>
<input id="@ComponentId"
readonly="@IsReadOnly"
class="w-100 form-control @AccessStatus"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
@inherits TemplateBaseOnline<bool>

<TemplateView Symbol="@OnlinerSymbol" FailureReason="@Onliner.AccessStatus.FailureReason">
<label for="@ComponentId">@Onliner.AttributeName</label>
<label for="@ComponentId">@Onliner.AttributeName @(string.IsNullOrWhiteSpace(Onliner.AttributeUnits) ? null : $"[{Onliner.AttributeUnits}]")</label>
<div class="form-check form-switch">
<input id="@ComponentId"
disabled="@IsReadOnly"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@inherits TemplateBaseOnline<DateOnly>

<TemplateView Symbol="@OnlinerSymbol" FailureReason="@Onliner.AccessStatus.FailureReason">
<label for="@ComponentId">@Onliner.AttributeName</label>
<label for="@ComponentId">@Onliner.AttributeName@(string.IsNullOrWhiteSpace(Onliner.AttributeUnits) ? null : $" [{Onliner.AttributeUnits}]")</label>
<input id="@ComponentId"
readonly="@IsReadOnly"
class="w-100 form-control @AccessStatus"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@inherits TemplateBaseOnline<DateTime>

<TemplateView Symbol="@OnlinerSymbol" FailureReason="@Onliner.AccessStatus.FailureReason">
<label for="@ComponentId">@Onliner.AttributeName</label>
<label for="@ComponentId">@Onliner.AttributeName@(string.IsNullOrWhiteSpace(Onliner.AttributeUnits) ? null : $" [{Onliner.AttributeUnits}]")</label>
<input id="@ComponentId"
readonly="@IsReadOnly"
class="w-100 form-control @AccessStatus"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@inherits TemplateBaseOnline<Double>

<TemplateView Symbol="@OnlinerSymbol" FailureReason="@Onliner.AccessStatus.FailureReason">
<label for="@ComponentId">@Onliner.AttributeName</label>
<label for="@ComponentId">@Onliner.AttributeName@(string.IsNullOrWhiteSpace(Onliner.AttributeUnits) ? null : $" [{Onliner.AttributeUnits}]")</label>
<input id="@ComponentId"
readonly="@IsReadOnly"
class="w-100 form-control @AccessStatus"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@inherits TemplateBaseOnline<Single>

<TemplateView Symbol="@OnlinerSymbol" FailureReason="@Onliner.AccessStatus.FailureReason">
<label for="@ComponentId">@Onliner.AttributeName</label>
<label for="@ComponentId">@Onliner.AttributeName@(string.IsNullOrWhiteSpace(Onliner.AttributeUnits) ? null : $" [{Onliner.AttributeUnits}]")</label>
<input id="@ComponentId"
readonly="@IsReadOnly"
class="w-100 form-control @AccessStatus"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
@inherits TemplateBaseOnline<TimeSpan>

<TemplateView Symbol="@OnlinerSymbol" FailureReason="@Onliner.AccessStatus.FailureReason">
<label for="@ComponentId">@Onliner.AttributeName</label>
<label for="@ComponentId">@Onliner.AttributeName@(string.IsNullOrWhiteSpace(Onliner.AttributeUnits) ? null : $" [{Onliner.AttributeUnits}]")</label>
<input id="@ComponentId"
readonly="@IsReadOnly"
class="w-100 form-control @AccessStatus"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@inherits TemplateBaseOnline<TimeSpan>

<TemplateView Symbol="@OnlinerSymbol" FailureReason="@Onliner.AccessStatus.FailureReason">
<label for="@ComponentId">@Onliner.AttributeName</label>
<label for="@ComponentId">@Onliner.AttributeName@(string.IsNullOrWhiteSpace(Onliner.AttributeUnits) ? null : $" [{Onliner.AttributeUnits}]")</label>
<input id="@ComponentId"
readonly="@IsReadOnly"
class="w-100 form-control @AccessStatus"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@typeparam T

<TemplateView Symbol="@OnlinerSymbol" FailureReason="@Onliner.AccessStatus.FailureReason">
<label for="@ComponentId">@Onliner.AttributeName</label>
<label for="@ComponentId">@Onliner.AttributeName@(string.IsNullOrWhiteSpace(Onliner.AttributeUnits) ? null : $" [{Onliner.AttributeUnits}]")</label>
<input id="@ComponentId"
readonly="readonly"
class="w-100 form-control @AccessStatus"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
@inherits TemplateBaseOnline<bool>

<TemplateView Symbol="@OnlinerSymbol" FailureReason="@Onliner.AccessStatus.FailureReason">
<label for="@ComponentId">@Onliner.AttributeName</label>
<label for="@ComponentId">@Onliner.AttributeName@(string.IsNullOrWhiteSpace(Onliner.AttributeUnits) ? null : $" [{Onliner.AttributeUnits}]")</label>
<div class="form-check form-switch">
<input id="@ComponentId"
disabled
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
@inherits TemplateBaseOnline<DateOnly>

<TemplateView Symbol="@OnlinerSymbol" FailureReason="@Onliner.AccessStatus.FailureReason">
<label for="@ComponentId">@Onliner.AttributeName</label>
<label for="@ComponentId">@Onliner.AttributeName@(string.IsNullOrWhiteSpace(Onliner.AttributeUnits) ? null : $" [{Onliner.AttributeUnits}]")</label>
<input id="@ComponentId"
readonly="readonly"
class="w-100 form-control @AccessStatus"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
@inherits TemplateBaseOnline<DateTime>

<TemplateView Symbol="@OnlinerSymbol" FailureReason="@Onliner.AccessStatus.FailureReason">
<label for="@ComponentId">@Onliner.AttributeName</label>
<label for="@ComponentId">@Onliner.AttributeName@(string.IsNullOrWhiteSpace(Onliner.AttributeUnits) ? null : $" [{Onliner.AttributeUnits}]")</label>
<input id="@ComponentId"
readonly="readonly"
class="w-100 form-control @AccessStatus"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@inherits TemplateBaseOnline<Double>

<TemplateView Symbol="@OnlinerSymbol" FailureReason="@Onliner.AccessStatus.FailureReason">
<label for="@ComponentId">@Onliner.AttributeName</label>
<label for="@ComponentId">@Onliner.AttributeName@(string.IsNullOrWhiteSpace(Onliner.AttributeUnits) ? null : $" [{Onliner.AttributeUnits}]")</label>
<input id="@ComponentId"
readonly="readonly"
class="w-100 form-control @AccessStatus"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@inherits TemplateBaseOnline<Single>

<TemplateView Symbol="@OnlinerSymbol" FailureReason="@Onliner.AccessStatus.FailureReason">
<label for="@ComponentId">@Onliner.AttributeName</label>
<label for="@ComponentId">@Onliner.AttributeName@(string.IsNullOrWhiteSpace(Onliner.AttributeUnits) ? null : $" [{Onliner.AttributeUnits}]")</label>
<input id="@ComponentId"
readonly="readonly"
class="w-100 form-control @AccessStatus"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@inherits TemplateBaseOnline<TimeSpan>

<TemplateView Symbol="@OnlinerSymbol" FailureReason="@Onliner.AccessStatus.FailureReason">
<label for="@ComponentId">@Onliner.AttributeName</label>
<label for="@ComponentId">@Onliner.AttributeName@(string.IsNullOrWhiteSpace(Onliner.AttributeUnits) ? null : $" [{Onliner.AttributeUnits}]")</label>
<input id="@ComponentId"
readonly="readonly"
class="w-100 form-control @AccessStatus"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@inherits TemplateBaseOnline<TimeSpan>

<TemplateView Symbol="@OnlinerSymbol" FailureReason="@Onliner.AccessStatus.FailureReason">
<label for="@ComponentId">@Onliner.AttributeName</label>
<label for="@ComponentId">@Onliner.AttributeName@(string.IsNullOrWhiteSpace(Onliner.AttributeUnits) ? null : $" [{Onliner.AttributeUnits}]")</label>
<input id="@ComponentId"
readonly="readonly"
class="w-100 form-control @AccessStatus"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@typeparam T

<TemplateView Symbol="@OnlinerSymbol" FailureReason="@Onliner.AccessStatus.FailureReason">
<label for="@ComponentId">@Onliner.AttributeName</label>
<label for="@ComponentId">@Onliner.AttributeName@(string.IsNullOrWhiteSpace(Onliner.AttributeUnits) ? null : $" [{Onliner.AttributeUnits}]")</label>
<input id="@ComponentId"
readonly="@IsReadOnly"
class="w-100 form-control @AccessStatus"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
@inherits TemplateBaseShadow<bool>

<TemplateView Symbol="@OnlinerSymbol" FailureReason="@Onliner.AccessStatus.FailureReason">
<label for="@ComponentId">@Onliner.AttributeName</label>
<label for="@ComponentId">@Onliner.AttributeName@(string.IsNullOrWhiteSpace(Onliner.AttributeUnits) ? null : $" [{Onliner.AttributeUnits}]")</label>
<div class="form-check form-switch">
<input id="@ComponentId"
disabled="@IsReadOnly"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@inherits TemplateBaseShadow<DateOnly>

<TemplateView Symbol="@OnlinerSymbol" FailureReason="@Onliner.AccessStatus.FailureReason">
<label for="@ComponentId">@Onliner.AttributeName</label>
<label for="@ComponentId">@Onliner.AttributeName@(string.IsNullOrWhiteSpace(Onliner.AttributeUnits) ? null : $" [{Onliner.AttributeUnits}]")</label>
<input id="@ComponentId"
readonly="@IsReadOnly"
class="w-100 form-control @AccessStatus"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@inherits TemplateBaseShadow<DateTime>

<TemplateView Symbol="@OnlinerSymbol" FailureReason="@Onliner.AccessStatus.FailureReason">
<label for="@ComponentId">@Onliner.AttributeName</label>
<label for="@ComponentId">@Onliner.AttributeName@(string.IsNullOrWhiteSpace(Onliner.AttributeUnits) ? null : $" [{Onliner.AttributeUnits}]")</label>
<input id="@ComponentId"
readonly="@IsReadOnly"
class="w-100 form-control @AccessStatus"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@inherits TemplateBaseOnline<Double>

<TemplateView Symbol="@OnlinerSymbol" FailureReason="@Onliner.AccessStatus.FailureReason">
<label for="@ComponentId">@Onliner.AttributeName</label>
<label for="@ComponentId">@Onliner.AttributeName@(string.IsNullOrWhiteSpace(Onliner.AttributeUnits) ? null : $" [{Onliner.AttributeUnits}]")</label>
<input id="@ComponentId"
readonly="@IsReadOnly"
class="w-100 form-control @AccessStatus"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@inherits TemplateBaseOnline<Single>

<TemplateView Symbol="@OnlinerSymbol" FailureReason="@Onliner.AccessStatus.FailureReason">
<label for="@ComponentId">@Onliner.AttributeName</label>
<label for="@ComponentId">@Onliner.AttributeName@(string.IsNullOrWhiteSpace(Onliner.AttributeUnits) ? null : $" [{Onliner.AttributeUnits}]")</label>
<input id="@ComponentId"
readonly="@IsReadOnly"
class="w-100 form-control @AccessStatus"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@inherits TemplateBaseShadow<TimeSpan>

<TemplateView Symbol="@OnlinerSymbol" FailureReason="@Onliner.AccessStatus.FailureReason">
<label for="@ComponentId">@Onliner.AttributeName</label>
<label for="@ComponentId">@Onliner.AttributeName@(string.IsNullOrWhiteSpace(Onliner.AttributeUnits) ? null : $" [{Onliner.AttributeUnits}]")</label>
<input id="@ComponentId"
readonly="@IsReadOnly"
class="w-100 form-control @AccessStatus"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@inherits TemplateBaseShadow<TimeSpan>

<TemplateView Symbol="@OnlinerSymbol" FailureReason="@Onliner.AccessStatus.FailureReason">
<label for="@ComponentId">@Onliner.AttributeName</label>
<label for="@ComponentId">@Onliner.AttributeName@(string.IsNullOrWhiteSpace(Onliner.AttributeUnits) ? null : $" [{Onliner.AttributeUnits}]")</label>
<input id="@ComponentId"
readonly="@IsReadOnly"
class="w-100 form-control @AccessStatus"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@inherits TemplateBaseShadow<T>

<TemplateView Symbol="@OnlinerSymbol" FailureReason="@Onliner.AccessStatus.FailureReason">
<label for="@ComponentId">@Onliner.AttributeName</label>
<label for="@ComponentId">@Onliner.AttributeName@(string.IsNullOrWhiteSpace(Onliner.AttributeUnits) ? null : $" [{Onliner.AttributeUnits}]")</label>
<input id="@ComponentId"
readonly="readonly"
class="w-100 form-control @AccessStatus"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
@inherits TemplateBaseShadow<bool>

<TemplateView Symbol="@OnlinerSymbol" FailureReason="@Onliner.AccessStatus.FailureReason">
<label for="@ComponentId">@Onliner.AttributeName</label>
<label for="@ComponentId">@Onliner.AttributeName@(string.IsNullOrWhiteSpace(Onliner.AttributeUnits) ? null : $" [{Onliner.AttributeUnits}]")</label>
<div class="form-check form-switch">
<input id="@ComponentId"
disabled
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
@inherits TemplateBaseShadow<DateOnly>

<TemplateView Symbol="@OnlinerSymbol" FailureReason="@Onliner.AccessStatus.FailureReason">
<label for="@ComponentId">@Onliner.AttributeName</label>
<label for="@ComponentId">@Onliner.AttributeName@(string.IsNullOrWhiteSpace(Onliner.AttributeUnits) ? null : $" [{Onliner.AttributeUnits}]")</label>
<input id="@ComponentId"
readonly="readonly"
class="w-100 form-control @AccessStatus"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
@inherits TemplateBaseShadow<DateTime>

<TemplateView Symbol="@OnlinerSymbol" FailureReason="@Onliner.AccessStatus.FailureReason">
<label for="@ComponentId">@Onliner.AttributeName</label>
<label for="@ComponentId">@Onliner.AttributeName@(string.IsNullOrWhiteSpace(Onliner.AttributeUnits) ? null : $" [{Onliner.AttributeUnits}]")</label>
<input id="@ComponentId"
readonly="readonly"
class="w-100 form-control @AccessStatus"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@inherits TemplateBaseOnline<Double>

<TemplateView Symbol="@OnlinerSymbol" FailureReason="@Onliner.AccessStatus.FailureReason">
<label for="@ComponentId">@Onliner.AttributeName</label>
<label for="@ComponentId">@Onliner.AttributeName@(string.IsNullOrWhiteSpace(Onliner.AttributeUnits) ? null : $" [{Onliner.AttributeUnits}]")</label>
<input id="@ComponentId"
readonly="readonly"
class="w-100 form-control @AccessStatus"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@inherits TemplateBaseOnline<Single>

<TemplateView Symbol="@OnlinerSymbol" FailureReason="@Onliner.AccessStatus.FailureReason">
<label for="@ComponentId">@Onliner.AttributeName</label>
<label for="@ComponentId">@Onliner.AttributeName@(string.IsNullOrWhiteSpace(Onliner.AttributeUnits) ? null : $" [{Onliner.AttributeUnits}]")</label>
<input id="@ComponentId"
readonly="readonly"
class="w-100 form-control @AccessStatus"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@inherits TemplateBaseShadow<TimeSpan>

<TemplateView Symbol="@OnlinerSymbol" FailureReason="@Onliner.AccessStatus.FailureReason">
<label for="@ComponentId">@Onliner.AttributeName</label>
<label for="@ComponentId">@Onliner.AttributeName@(string.IsNullOrWhiteSpace(Onliner.AttributeUnits) ? null : $" [{Onliner.AttributeUnits}]")</label>
<input id="@ComponentId"
readonly="readonly"
class="w-100 form-control @AccessStatus"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@inherits TemplateBaseShadow<TimeSpan>

<TemplateView Symbol="@OnlinerSymbol" FailureReason="@Onliner.AccessStatus.FailureReason">
<label for="@ComponentId">@Onliner.AttributeName</label>
<label for="@ComponentId">@Onliner.AttributeName@(string.IsNullOrWhiteSpace(Onliner.AttributeUnits) ? null : $" [{Onliner.AttributeUnits}]")</label>
<input id="@ComponentId"
readonly="readonly"
class="w-100 form-control @AccessStatus"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@

<input id:ignore="StationStatus_6e28cfe0-4435-4380-8cdf-aab96c56d900" class="w-100 form-control " readonly="readonly" style="background-color:transparent" value="Unknown " data-bs-toggle="tooltip" data-bs-placement="top" data-bs-custom-class="custom-tooltip" data-bs-title="prgWeatherStations.Weather Cyclic.North pole station.Station status" />

<div class="invalid-feedback"></div></div></div><div><div name="prgWeatherStations-_weatherStations-NorthPole-Pressure" class="w-100 form-group mb-2"><label for:ignore="Pressure_6e94ef0f-3fa6-44b7-b3eb-77f94c8e7492">Pressure</label>
<div class="invalid-feedback"></div></div></div><div><div name="prgWeatherStations-_weatherStations-NorthPole-Pressure" class="w-100 form-group mb-2"><label for:ignore="Pressure_6e94ef0f-3fa6-44b7-b3eb-77f94c8e7492">Pressure [Torr]</label>
<input id:ignore="Pressure_6e94ef0f-3fa6-44b7-b3eb-77f94c8e7492" readonly="readonly" class="w-100 form-control " style="background-color:transparent" type="text" value="0" data-bs-toggle="tooltip" data-bs-placement="top" data-bs-custom-class="custom-tooltip" data-bs-title="prgWeatherStations.Weather Cyclic.North pole station.Pressure" />

<div class="invalid-feedback"></div></div></div><div><div name="prgWeatherStations-_weatherStations-NorthPole-Temp" class="w-100 form-group mb-2"><label for:ignore="Temp_408c4920-ff92-44a8-96a0-1c52494bd230">Temperature</label>
<div class="invalid-feedback"></div></div></div><div><div name="prgWeatherStations-_weatherStations-NorthPole-Temp" class="w-100 form-group mb-2"><label for:ignore="Temp_408c4920-ff92-44a8-96a0-1c52494bd230">Temperature [&#xB0;C]</label>
<input id:ignore="Temp_408c4920-ff92-44a8-96a0-1c52494bd230" readonly="readonly" class="w-100 form-control " style="background-color:transparent" type="text" value="0" data-bs-toggle="tooltip" data-bs-placement="top" data-bs-custom-class="custom-tooltip" data-bs-title="prgWeatherStations.Weather Cyclic.North pole station.Temperature" />

<div class="invalid-feedback"></div></div></div><div><div name="prgWeatherStations-_weatherStations-NorthPole-Visibility" class="w-100 form-group mb-2"><label for:ignore="Visibility_4a119f80-9765-4909-b1a8-f286a3fb0fb2">Visibility</label>
<div class="invalid-feedback"></div></div></div><div><div name="prgWeatherStations-_weatherStations-NorthPole-Visibility" class="w-100 form-group mb-2"><label for:ignore="Visibility_4a119f80-9765-4909-b1a8-f286a3fb0fb2">Visibility [km]</label>
<input id:ignore="Visibility_4a119f80-9765-4909-b1a8-f286a3fb0fb2" readonly="readonly" class="w-100 form-control " style="background-color:transparent" type="text" value="0" data-bs-toggle="tooltip" data-bs-placement="top" data-bs-custom-class="custom-tooltip" data-bs-title="prgWeatherStations.Weather Cyclic.North pole station.Visibility" />

<div class="invalid-feedback"></div></div></div><div><div name="prgWeatherStations-_weatherStations-NorthPole-WindHeading" class="w-100 form-group mb-2"><label for:ignore="WindHeading_df5a8e19-4c12-4633-b793-d7db8ad4e6f6">Wind heading</label>
<div class="invalid-feedback"></div></div></div><div><div name="prgWeatherStations-_weatherStations-NorthPole-WindHeading" class="w-100 form-group mb-2"><label for:ignore="WindHeading_df5a8e19-4c12-4633-b793-d7db8ad4e6f6">Wind heading [Azimuth]</label>
<input id:ignore="WindHeading_df5a8e19-4c12-4633-b793-d7db8ad4e6f6" readonly="readonly" class="w-100 form-control " style="background-color:transparent" type="text" step="any" value="0" data-bs-toggle="tooltip" data-bs-placement="top" data-bs-custom-class="custom-tooltip" data-bs-title="prgWeatherStations.Weather Cyclic.North pole station.Wind heading" />

<div class="invalid-feedback"></div></div></div><div><div name="prgWeatherStations-_weatherStations-NorthPole-WindSpeed" class="w-100 form-group mb-2"><label for:ignore="WindSpeed_2d739f9b-e493-4d56-afff-5c858c7298e2">Wind speed</label>
<div class="invalid-feedback"></div></div></div><div><div name="prgWeatherStations-_weatherStations-NorthPole-WindSpeed" class="w-100 form-group mb-2"><label for:ignore="WindSpeed_2d739f9b-e493-4d56-afff-5c858c7298e2">Wind speed [m/s]</label>
<input id:ignore="WindSpeed_2d739f9b-e493-4d56-afff-5c858c7298e2" readonly="readonly" class="w-100 form-control " style="background-color:transparent" type="text" value="0" data-bs-toggle="tooltip" data-bs-placement="top" data-bs-custom-class="custom-tooltip" data-bs-title="prgWeatherStations.Weather Cyclic.North pole station.Wind speed" />

<div class="invalid-feedback"></div></div></div><div><div name="prgWeatherStations-_weatherStations-NorthPole-TestDate" class="w-100 form-group mb-2"><label for:ignore="TestDate_69cee20a-667c-4fd3-b2f2-df1a87cfad33">TestDate</label>
Expand Down
Loading

0 comments on commit 92722ba

Please sign in to comment.