From dcc6968a30c1f6c484d63b37383c8c376c7fa785 Mon Sep 17 00:00:00 2001 From: Dan Howe Date: Thu, 1 Aug 2019 17:15:54 +1000 Subject: [PATCH] Add 'tables.py' --- daqviewer/tables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daqviewer/tables.py b/daqviewer/tables.py index 8679271..a952ba9 100644 --- a/daqviewer/tables.py +++ b/daqviewer/tables.py @@ -21,7 +21,7 @@ app.layout = html.Div([ dash_table.DataTable( id='datatable-row-ids', columns=[ - {'name': i, 'id': i, 'deletable': True} for i in df.columns + {'name': i, 'id': i} for i in df.columns # omit the id column if i != 'id' ],