Skip to content

Commit

Permalink
Merge pull request #54 from EIT-ALIVE/eit_dashboard
Browse files Browse the repository at this point in the history
changed button order
  • Loading branch information
JulietteFrancovich authored Jun 21, 2024
2 parents eb00048 + 53cae89 commit c7f2c30
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions eit_dash/pages/load.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,21 +53,21 @@
dbc.Col(
[
dbc.Button(
"Confirm",
id=ids.LOAD_CONFIRM_BUTTON,
"Cancel",
id=ids.LOAD_CANCEL_BUTTON,
className="ms-auto",
color="success",
color="danger",
n_clicks=0,
),
],
),
dbc.Col(
[
dbc.Button(
"Cancel",
id=ids.LOAD_CANCEL_BUTTON,
"Confirm",
id=ids.LOAD_CONFIRM_BUTTON,
className="ms-auto",
color="danger",
color="success",
n_clicks=0,
),
],
Expand Down

0 comments on commit c7f2c30

Please sign in to comment.