You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the cell type is "dropdown-cell" and allowedValues is set to [{label, value}] type, it cannot be copied and pasted correctly。
My configuration is as follows
When I copied 220 and pasted it into the cell, there was no response. The value obtained by onCellEdited is still the old value.
Then I tried to check the source code and found that it might be the following problem
When allowedValues is an object array, onPaste cannot return the correct value,and I tried return v as the value, which successfully solved the bug
The text was updated successfully, but these errors were encountered:
If the cell type is "dropdown-cell" and allowedValues is set to [{label, value}] type, it cannot be copied and pasted correctly。
My configuration is as follows
When I copied 220 and pasted it into the cell, there was no response. The value obtained by onCellEdited is still the old value.
Then I tried to check the source code and found that it might be the following problem
When allowedValues is an object array, onPaste cannot return the correct value,and I tried return v as the value, which successfully solved the bug
The text was updated successfully, but these errors were encountered: