diff --git a/geoh5py/ui_json/forms.py b/geoh5py/ui_json/forms.py index 1f25605af..d397f792c 100644 --- a/geoh5py/ui_json/forms.py +++ b/geoh5py/ui_json/forms.py @@ -92,9 +92,8 @@ class BaseForm(BaseModel): :param group_dependency_type: Controls whether the ui group is enabled or visible when the group dependency is enabled if optional or True if a bool type. - :param verbose: Sets the level at which Geoscience Analyst will make - the parameter visible in a ui.json file. Verbosity level is set - within Analyst menu. + :param placeholder_text: Text displayed in ui element when no data + has been provided. """ model_config = ConfigDict( @@ -117,6 +116,7 @@ class BaseForm(BaseModel): dependency_type: DependencyType = DependencyType.ENABLED group_dependency: str = "" group_dependency_type: DependencyType = DependencyType.ENABLED + placeholder_text: str = "" @classmethod def infer(cls, data: dict[str, Any]) -> type[BaseForm]: