Skip to content

Commit

Permalink
fix: missing value assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
dbirman committed Nov 5, 2024
1 parent b8f95cd commit 418b198
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aind_qc_portal/panel/quality_control.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def __init__(self, id, **params):
self.submit_button = pn.widgets.Button(
name="Submit changes", button_type="success",
)
self.submit_error = pn.widgets.StaticText("")
self.submit_error = pn.widgets.StaticText(value="")
self.submit_col = pn.Column(self.submit_button, self.submit_error)
pn.bind(self.submit_changes, self.submit_button, watch=True)

Expand Down

0 comments on commit 418b198

Please sign in to comment.