-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix/160 invalid date format on import csv #7525
Merged
Joao-vi
merged 15 commits into
production
from
fix/160-invalid-date-format-on-import-csv
Dec 16, 2024
Merged
Changes from 10 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
1a062a8
add failing test covering the bug
Joao-vi 15667c1
fix date format on import csv
Joao-vi c0c0986
update test title
Joao-vi 87b560d
improve testing
Joao-vi 239e09f
Merge branch 'production' into fix/160-invalid-date-format-on-import-csv
Joao-vi f28a381
Merge branch 'production' into fix/160-invalid-date-format-on-import-csv
Joao-vi 82faac0
Merge branch 'production' into fix/160-invalid-date-format-on-import-csv
Joao-vi 03203ea
Merge branch 'production' into fix/160-invalid-date-format-on-import-csv
Joao-vi efc5f1c
Testing the queue.v2
daneryl e71a2a1
fix import entities with relationships
Joao-vi d567e84
Merge branch 'production' into fix/160-invalid-date-format-on-import-csv
Joao-vi 08e9a2c
Merge branch 'production' into fix/160-invalid-date-format-on-import-csv
Joao-vi fb33aa2
Merge branch 'fix/160-invalid-date-format-on-import-csv' of github.co…
Joao-vi 21c5083
fix eslint issues
Joao-vi 1db55a4
Revert "Testing the queue.v2"
Joao-vi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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,2 @@ | ||
Title,Date field,simple text field__en,simple text field__es | ||
Simple template title,12/31/2024,English,Spanish |
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,2 @@ | ||
Title,Date field,simple text field__en,simple text field__es | ||
Simple template title,2024/12/31,English,Spanish |
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We really cannot put exceptions to es-lints like this. The fact that this practice has happened before should not be followed these days. So, please, remove this exceptions and lets fix the code to not have these eslint warnings:
To solve this, please create a reduce with an async callback.
Also, the no-unreachable-loop is not really solving any warning, so this was probably a previous version of the code which is no longer present, all the more reason not to include this exceptions that can later be left in the header of the file and we end up with code that is against our own guidelines.