From 1dc1ba64d443270f2eed80e1c203e1a9aab685dc Mon Sep 17 00:00:00 2001 From: BioSehnsucht Date: Fri, 8 Sep 2017 23:20:14 -0500 Subject: [PATCH] input_text : removing disabled option per home-assistant/home-assistant-polymer#408 (#3327) --- source/_components/input_text.markdown | 5 ----- 1 file changed, 5 deletions(-) diff --git a/source/_components/input_text.markdown b/source/_components/input_text.markdown index 7e0c3694471..26ad4846a74 100644 --- a/source/_components/input_text.markdown +++ b/source/_components/input_text.markdown @@ -27,10 +27,6 @@ input_text: text3: name: Text 3 pattern: '[a-fA-F0-9]*' - test4: - name: Text 4 - initial: Can't Touch This - disabled: true ``` Configuration variables: @@ -41,4 +37,3 @@ Configuration variables: - **name** (*Optional*): Friendly name of the text input. - **initial** (*Optional*): Initial value when Home Assistant starts. Default is empty string. - **pattern** (*Optional*): Regex pattern for client side validation. Default is empty string, which is treated same as `.*`. -- **disabled** (*Optional*): If set to true, disables making changes from the UI (but not by automations / REST / etc), displaying the value grayed out to indicate it is read-only in the UI. Default is false.