Skip to content

Commit 72a5179

Browse files
authored
Merge pull request #484 from ThomasBouche/hotfix/webapp_filter
hotfix webapp filter
2 parents 437eddd + abd448e commit 72a5179

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shapash/webapp/smart_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1526,7 +1526,7 @@ def update_datatable(selected_data,
15261526
{
15271527
column: {'value': str(value), 'type': 'text'}
15281528
for column, value in row.items()
1529-
} for row in df.to_dict('rows')
1529+
} for row in df.to_dict('index').values()
15301530
]
15311531
return (
15321532
self.components['table']['dataset'].data,

0 commit comments

Comments
 (0)