From d03bc35c326853bfc412d3cf09a3075f3bc454f7 Mon Sep 17 00:00:00 2001 From: Mateusz Wisniewski Date: Mon, 22 Jul 2024 13:43:32 +0200 Subject: [PATCH] Update docs/extensibility/60-form-widgets.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Małgorzata Świeca --- docs/extensibility/60-form-widgets.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/extensibility/60-form-widgets.md b/docs/extensibility/60-form-widgets.md index f107ce1079..df19481bdc 100644 --- a/docs/extensibility/60-form-widgets.md +++ b/docs/extensibility/60-form-widgets.md @@ -33,7 +33,7 @@ These are the available `Text` widget parameters: | **placeholder** | No | string | Specifies a short hint about the input field value. | | **required** | No | boolean | Specifies if a field is required. The default value is taken from CustomResourceDefintion (CRD); if it doesn't exist in the CRD, then it defaults to `false`. | | **inputInfo** | No | string | A string below the input field that shows how to fill in the input. You can use the {{ [`name`] (`link`) }} format to display a `name` instead of a `link. | -| **description** | No | string | A string displayed in a tooltip when you hover over a question mark icon, next to the input's label. The default value is taken from the CustomResourceDefintion (CRD). The tooltip can be disabled by placing empty string. | +| **description** | No | string | A string displayed in a tooltip when you hover over a question mark icon, next to the input's label. The default value is taken from the CustomResourceDefintion (CRD). To disable the tooltip, add an empty string. | | **readOnly** | No | boolean | Specifies if a field is read-only. Defaults to `false`. | | **decodable** | No | boolean | Specifies that the field is base64-encoded and can be decoded in the UI. It can't be used together with **enum**. | | **decodedPlacehoder** | No | string | An optional alternative placeholder to use when the field is decoded. |