Skip to content

Commit

Permalink
REF: Remove unnecessary words from labels
Browse files Browse the repository at this point in the history
  • Loading branch information
cortadocodes committed Jun 7, 2023
1 parent dca7e6f commit c5d6235
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions dashboard/layouts.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,55 +183,55 @@ def create_cp_plot_tab_layout(app):
[
html.Div(
[
html.Label("u value"),
html.Label("u"),
dash_daq.NumericInput(
id="u-input",
value=10,
min=0,
max=1e9,
size=150,
size=120,
persistence=True,
),
],
style={"display": "inline-block"},
),
html.Div(
[
html.Label("p_inf value"),
html.Label("p_inf"),
dash_daq.NumericInput(
id="p-inf-input",
value=1e5,
min=0,
max=1e12,
size=150,
size=120,
persistence=True,
),
],
style={"display": "inline-block"},
),
html.Div(
[
html.Label("Cp minimum value"),
html.Label("Cp minimum"),
dash_daq.NumericInput(
id="cp-minimum-input",
value=-10,
min=-1000,
max=1000,
size=150,
size=120,
persistence=True,
),
],
style={"display": "inline-block"},
),
html.Div(
[
html.Label("Cp maximum value"),
html.Label("Cp maximum"),
dash_daq.NumericInput(
id="cp-maximum-input",
value=3,
min=-1000,
max=1000,
size=150,
size=120,
persistence=True,
),
],
Expand Down

0 comments on commit c5d6235

Please sign in to comment.