Skip to content

Commit

Permalink
Add all group memebers to experimentor drop down
Browse files Browse the repository at this point in the history
Tides us over until wright-group#19 is properly implemented

Just adds a lot of names to the combo and sorts them.

Additionally an "unspecified" option is available, and is the default
  • Loading branch information
ksunden committed Jun 28, 2022
1 parent 818f447 commit 215b081
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bluesky_cmds/somatic/plan_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def __init__(self):
self.fields = {
"Name": pc.String(),
"Info": pc.String(),
"Experimentor": pc.Combo(["Kyle", "Emily", "Kelson", "Dan"]),
"Experimentor": pc.Combo(["unspecified"] + list(sorted(["Kyle", "Emily", "Kelson", "Dan", "Kent", "Peter", "Ryan", "Jason", "David", "John", "Chris", "James"]))),
}

@property
Expand Down

0 comments on commit 215b081

Please sign in to comment.