Skip to content

Commit

Permalink
Merge pull request #27 from TACC/10-remove-the-rescinded-section-from…
Browse files Browse the repository at this point in the history
…-discrepancies-panel

Removed table from discrepancies
  • Loading branch information
mepearson authored Jul 1, 2024
2 parents c67f860 + a6ef7c3 commit 2a69169
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -721,14 +721,6 @@ def update_discrepancies_section(data):
sort_mode="multi",
)

rescinded_table = dt.DataTable(
id='tbl-rescinded', data=rescinded_imaging.to_dict('records'),
columns=[{"name": i, "id": i} for i in rescinded_imaging.columns],
filter_action="native",
sort_action="native",
sort_mode="multi",
)


discrepancies_div = html.Div([
dbc.Col([
Expand All @@ -739,10 +731,6 @@ def update_discrepancies_section(data):
html.H3('Records with mismatch between indicated and received'),
mismatch_table
],width=6),
dbc.Col([
html.H3(rescind_msg),
rescinded_table
],width=6),
])
return discrepancies_div

Expand Down

0 comments on commit 2a69169

Please sign in to comment.