-
Notifications
You must be signed in to change notification settings - Fork 2
Igor/bug fixes refactors #58
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
Merged
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
6cff6f0
fix: prompt is clear that DnD rules advice is okay
igor47 2c937c7
feat: tools for creating/deleting item effects
igor47 49c6bd6
fix: wearing/removing/wielding items should update spells panel
igor47 851a1c7
fix: lightbox shows entire image (uncropped)
igor47 1f6aa3b
fix: sort levels by id
igor47 9cbfcca
feat: use ulid monotonic factory
igor47 72fba0d
refactor: sort by ids in preference to created_at times
igor47 f1636cc
feat: characters list is a card grid
igor47 b899ef5
fix: add damage rows to edit item form
igor47 88390b4
fix: correct textarea values
igor47 1d92c33
refactor: consistent ids in forms
igor47 94199e6
fix: make sure avatar cropper stays within image bounds
igor47 9836c49
refactor: common components for modal form and submit
igor47 2e63121
feat: all forms use morphing and sync
igor47 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
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.
The
data-existing*attributes are set tonullwhen values are not present, but JavaScript'sdatasetAPI convertsnullto the string"null". This means the conditionexistingx != nullon line 136 ofavatar-cropper.jswill always be true (even when attributes are "null"), breaking the logic.Change
?? nullto?? undefinedfor all four data attributes, asundefinedwon't render the attribute at all, which is the correct behavior.