Skip to content

Commit

Permalink
readd error msg
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanalvizo committed Jul 12, 2024
1 parent ecccee8 commit 5f5cd88
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion plugins/ui/src/deephaven/ui/components/picker.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def picker(
validation_behavior: ValidationBehavior | None = None,
# validate # omitted because it has synchronous return
description: Element | None = None,
# error_message # omitted because it has synchronous return
error_message: Element | None = None,
label: Element | None = None,
placeholder: str | None = None,
is_loading: bool | None = None,
Expand Down Expand Up @@ -162,6 +162,7 @@ def picker(
is_invalid: Whether the Picker is in an invalid state.
validation_behavior: Whether to use native HTML form validation to prevent form submission when the value is missing or invalid, or mark the field as required or invalid via ARIA.
description: A description for the field. Provides a hint such as specific requirements for what to choose.
error_message: An error message for the field.
label: A label for the field.
placeholder: Placeholder text for the input.
is_loading: Whether the Picker is in a loading state.
Expand Down

0 comments on commit 5f5cd88

Please sign in to comment.