Skip to content

Commit

Permalink
Merge pull request #1536 from ardriveapp/PE-5317
Browse files Browse the repository at this point in the history
PE-5317: re-enables multi-select when not showing hidden files
  • Loading branch information
matibat authored Jan 4, 2024
2 parents bff5945 + 849ec49 commit 2e44a74
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ Widget _buildDataListContent(
filteredItems = items.where((item) => !item.isHidden).toList();
}

final itemsHash = filteredItems.hashCode;
final itemsHash = Object.hashAll(filteredItems);

return LayoutBuilder(builder: (context, constraints) {
return ArDriveDataTable<ArDriveDataTableItem>(
Expand Down

0 comments on commit 2e44a74

Please sign in to comment.