Skip to content

Commit

Permalink
fix(BaseConfigurationRazor): allow edit of teslamate db name
Browse files Browse the repository at this point in the history
  • Loading branch information
pkuehnel committed Feb 9, 2025
1 parent 88073bf commit 2bca3d8
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions TeslaSolarCharger/Client/Pages/BaseConfiguration.razor
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,21 @@ else
</InputComponent>

<InputComponent ValueId="teslaMateDbPort"
LabelText="TeslaMate Database Server Port"
UnitText=""
HelpText="You can use the internal port of the TeslaMate database container">
LabelText="TeslaMate Database Server Port"
UnitText=""
HelpText="You can use the internal port of the TeslaMate database container">
<InputFragment>
<InputNumber id="teslaMateDbPort" @bind-Value="_dtoBaseConfiguration.TeslaMateDbPort" class="form-control" placeholder=" " />
</InputFragment>
</InputComponent>
<InputComponent ValueId="teslaMateDbName"
LabelText="TeslaMate Database Name"
UnitText=""
HelpText="">
<InputFragment>
<InputText id="teslaMateDbName" @bind-Value="_dtoBaseConfiguration.TeslaMateDbDatabaseName" class="form-control" placeholder=" " />
</InputFragment>
</InputComponent>
<InputComponent ValueId="teslaMateDbUser"
LabelText="TeslaMate Database Username"
UnitText=""
Expand Down

0 comments on commit 2bca3d8

Please sign in to comment.