Skip to content

Commit 3309c48

Browse files
committed
less obscure naming
1 parent 6d15ea9 commit 3309c48

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

enacts/onset/layout.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -423,15 +423,15 @@ def results_layout():
423423
dbc.Spinner(dcc.Graph(id="cess_date_plot")),
424424
dbc.Spinner(dcc.Graph(id="cess_prob_exc")),
425425
],
426-
id="cess_dbct",
426+
id="cess_tab",
427427
label="Cessation Date",
428428
),
429429
dbc.Tab(
430430
[
431431
dbc.Spinner(dcc.Graph(id="length_plot")),
432432
dbc.Spinner(dcc.Graph(id="length_prob_exc")),
433433
],
434-
id="length_dbct",
434+
id="length_tab",
435435
label="Season Length",
436436
),
437437
],

enacts/onset/maproom.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ def onset_plots(
508508
@APP.callback(
509509
Output("cess_date_plot", "figure"),
510510
Output("cess_prob_exc", "figure"),
511-
Output("cess_dbct","tab_style"),
511+
Output("cess_tab","tab_style"),
512512
Input("loc_marker", "position"),
513513
Input("cess_start_day", "value"),
514514
Input("cess_start_month", "value"),
@@ -602,7 +602,7 @@ def cess_plots(
602602
@APP.callback(
603603
Output("length_plot", "figure"),
604604
Output("length_prob_exc", "figure"),
605-
Output("length_dbct","tab_style"),
605+
Output("length_tab","tab_style"),
606606
Input("loc_marker", "position"),
607607
Input("search_start_day", "value"),
608608
Input("search_start_month", "value"),

0 commit comments

Comments
 (0)