We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3ce85f commit 7cdee83Copy full SHA for 7cdee83
1 file changed
ASCOM.Alpaca.Simulators/Pages/ObservingConditionsControl.razor
@@ -50,8 +50,22 @@
50
}
51
52
<th>@dev.Value.Unit</th>
53
- <th><input type="checkbox" @bind="@dev.Value.Override"></th>
54
- <th><input type="range" min="@dev.Value.SimFromValue" max="@dev.Value.SimToValue" step=".1" @bind="@dev.Value.OverrideValue" style="min-width:30ch"></th>
+ <th>
+ @if (dev.Key != "DewPoint")
55
+ {
56
+ <input type="checkbox" @bind="@dev.Value.Override">
57
+ }
58
+ </th>
59
+ @if (dev.Key == "DewPoint")
60
61
+ <th>Calculated from Temp. & Humidity</th>
62
63
+ else
64
65
66
+ <input type="range" min="@dev.Value.SimFromValue" max="@dev.Value.SimToValue" step=".1" @bind="@dev.Value.OverrideValue" style="min-width:30ch">
67
68
69
70
else
71
{
0 commit comments