fix: using .value in second part of columns conditional so columns.va… #462
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.
…lue is always array
Pull request template
Columns mapping expects a value coming from a computed property. To fix it in last PR, we had added a
.value
to thecolumns
property, but the reactivity was not working. The real problem was that in columns computed property the second part of the conditional was returning a computed value, so we had a computed within another (columns.value was of type number[] | ComputedRef<number[]>). In the template, it was already accessing the value of the property. Now, by using .value to ensure that columns is always a ComputedRef<number[]>, everything seems to work fine.Motivation and context
Type of change
What is the destination branch of this PR?
Main
How has this been tested?
Column picker should appear and should be reactive.
Checklist: