-
-
Notifications
You must be signed in to change notification settings - Fork 9.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[release-2.19] fix: resolve issue with disabled property in options n…
…ot working (#6608) This is an automated cherry-pick of #6595 /assign LIlGG ```release-note 解决 formkit select 组件的 Option 设置 disabled 无效的问题 ```
- Loading branch information
1 parent
a0a8c33
commit 17342ae
Showing
3 changed files
with
14 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export const isFalse = (value: string | boolean | undefined | null) => { | ||
return [undefined, null, "false", false].includes(value); | ||
}; |