瀏覽代碼

removed is_read_only from select (#1799)

wassaf shahzad 1 年之前
父節點
當前提交
77edb01e74
共有 1 個文件被更改,包括 0 次插入3 次删除
  1. 0 3
      reflex/components/forms/select.py

+ 0 - 3
reflex/components/forms/select.py

@@ -36,9 +36,6 @@ class Select(ChakraComponent):
     # If true, the form control will be invalid. This has 2 side effects: - The FormLabel and FormErrorIcon will have `data-invalid` set to true - The form element (e.g, Input) will have `aria-invalid` set to true
     is_invalid: Var[bool]
 
-    # If true, the form control will be readonly
-    is_read_only: Var[bool]
-
     # If true, the form control will be required. This has 2 side effects: - The FormLabel will show a required indicator - The form element (e.g, Input) will have `aria-required` set to true
     is_required: Var[bool]