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
When uploading a file we are storing the file content's in a variable which is an array of object, and when accessing that variable we are always accessing 0th index of it to use the file's content which will be difficult to handle. So when storing the file content in the variable we can save the 0th index so everytime when accessing it, we don't need to explicitly define the index.
In areAllFieldsSelected method we are using every method to check for un-selected values when mapping, but we can simply use some method and revert its logic.
Expected behavior
Steps to reproduce the issue
Can you handle fixing this bug by yourself?
YES
NO
Environment details
Browser:
OS:
Code Version:
Additional information
The text was updated successfully, but these errors were encountered:
Current behavior
When uploading a file we are storing the file content's in a variable which is an array of object, and when accessing that variable we are always accessing 0th index of it to use the file's content which will be difficult to handle. So when storing the file content in the variable we can save the
0th
index so everytime when accessing it, we don't need to explicitly define the index.In
areAllFieldsSelected
method we are usingevery
method to check for un-selected values when mapping, but we can simply usesome
method and revert its logic.Expected behavior
Steps to reproduce the issue
Can you handle fixing this bug by yourself?
Environment details
Additional information
The text was updated successfully, but these errors were encountered: