Skip to content

Commit

Permalink
Add waiting and empty `` to the option of the job state in the job se…
Browse files Browse the repository at this point in the history
…arch page (#681)
  • Loading branch information
superstar54 authored Apr 24, 2024
1 parent 99c059d commit 038d30f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/aiidalab_qe/app/utils/search_jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ def setup_widgets(self):
lambda x: [] if x is None else x
)
self.job_state_dropdown = ipw.Dropdown(
options=["finished", "except", "killed"],
value="finished",
options=["", "finished", "waiting", "except", "killed"],
value="",
description="Job State:",
)
self.label_search_field = ipw.Text(
Expand Down

0 comments on commit 038d30f

Please sign in to comment.