Skip to content

Commit 15f46b0

Browse files
removing nan from properties query (#906)
1 parent b0cfdbd commit 15f46b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/aiidalab_qe/app/utils/search_jobs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def setup_widgets(self):
8585
</style>
8686
"""
8787

88-
unique_properties = set(self.df["Properties"].explode())
88+
unique_properties = set(self.df["Properties"].explode().dropna())
8989
unique_properties.discard(None)
9090
property_checkboxes = [
9191
ipw.Checkbox(

0 commit comments

Comments
 (0)