Fix Error When Options Value is Array#24
Open
kapilpipaliya wants to merge 1 commit intothisbeyond:mainfrom
Open
Fix Error When Options Value is Array#24kapilpipaliya wants to merge 1 commit intothisbeyond:mainfrom
kapilpipaliya wants to merge 1 commit intothisbeyond:mainfrom
Conversation
I am getting this error when I have option value is array: `Uncaught Error: Incompatible value type for single select.`
Contributor
|
Value needs to be an array when setting value for a multiple select. So the error is correct. |
Contributor
Author
|
yes, but I did this PR for single select. when single select the value can be a Array too. |
Contributor
|
I'm not sure what you mean. When using a single select the value should be scalar (not an array). Are you saying you want to support setting an array for a single select? |
Contributor
Author
|
yes, I want the support of array for a single select, because my single select option value is an array. |
Contributor
|
That sounds like an interesting use case and not one I expected. Could you share your example use case? Internally we don't expect arrays and it might break in places so I'll need to check that. |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I am getting this error when I have option value is array:
Uncaught Error: Incompatible value type for single select.