Skip to content

Commit

Permalink
Fix code full label uniqueness check
Browse files Browse the repository at this point in the history
  • Loading branch information
edan-bainglass committed Jan 8, 2025
1 parent 1dca354 commit 1a11fab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aiidalab_widgets_base/computational_resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -1236,7 +1236,7 @@ def on_setup_code(self, _=None):
qb = orm.QueryBuilder()
qb.append(orm.Computer, filters={"uuid": computer.uuid}, tag="computer")
qb.append(
orm.AbstractCode,
orm.Code,
with_computer="computer",
filters={"label": kwargs["label"]},
)
Expand Down

0 comments on commit 1a11fab

Please sign in to comment.