-
Notifications
You must be signed in to change notification settings - Fork 0
Feature kpoland dataset new version #227
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
base: master
Are you sure you want to change the base?
Conversation
|
In this PR:
|
f639183 to
6af27e8
Compare
|
For Monday: Added versioning AND consolidated some javascript functionality (which is why there's so many deletions). Refactoring/updating tests in Jest and Python to match and pushing that shortly.... |
| is_deleted=False, | ||
| ).first() | ||
|
|
||
| return permission.permission_level in ["co-owner"] |
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.
permission could be None here, which would raise a AttributeError: 'NoneType' object has no attribute ...
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.
just checking if these "keyword" removals are intentional
| "created_at", | ||
| "updated_at", |
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.
maybe we should reset these timestamp flags for a new version, instead?
|
|
||
| // Store dataset info in the download button (find within this specific modal) | ||
| const confirmBtn = modal.querySelector('#confirmWebDownloadBtn'); | ||
| if (confirmBtn) { |
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.
[nit] you could do an early return if false, instead
No description provided.