Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
apmasell committed Dec 10, 2019
1 parent 2a07d66 commit 0d6de83
Showing 1 changed file with 16 additions and 20 deletions.
36 changes: 16 additions & 20 deletions application/dash_application/table_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,27 +95,23 @@ def table_tabs(failed_id: str, data_id: str, empty_data: DataFrame, table_column
core.Tab(
label="Failed Samples",
children=[
core.Loading(
[
html.Div(
className='data-table',
children=[
cutoff_table(
failed_id,
empty_data,
limits)])]),
html.Div(
className='data-table',
children=[
cutoff_table(
failed_id,
empty_data,
limits)]),
]),
core.Tab(
label="Raw Data",
children=[
core.Loading(
[
html.Div(
className='data-table',
children=[
build_table(
data_id,
table_columns,
empty_data,
filter_on)]),
])])])
html.Div(
className='data-table',
children=[
build_table(
data_id,
table_columns,
empty_data,
filter_on)]),
])])

0 comments on commit 0d6de83

Please sign in to comment.