This repository has been archived by the owner on Apr 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 316
fix: LEAP-447: Fix Number tag validation #1649
Merged
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
59d128c
refactor: LEAP-447: Refactor validation method across control tags
Gondragos d23db5b
fix: LEAP-447: Improve Number tag validation
Gondragos b81a02c
Improve validation method of Required mixin
Gondragos d583b3f
Add validation for per-item tags
Gondragos 6a4572a
Update ls-test dependency in functional tests
Gondragos 880cc15
Add functional tests for number control tag
Gondragos cfc64ea
Fix linting issues
Gondragos 0c489c8
Fix the accidental deletion of a line of code
Gondragos 0824f4f
Refactor with simplifying
Gondragos d0e153c
Fix linting problems and texts
Gondragos 91d50e3
Merge branch 'fb-leap-447/number-validation' of github.com:heartexlab…
Gondragos 9c711bc
Update @heartexlabs/ls-test version
Gondragos 5bc493b
Add comments about new methods and tricky changes
Gondragos 0c8f7bf
Make validation tests more intuitive
Gondragos 62d118c
Remove unused import in number.cy
Gondragos 9b2a86a
Merge branch 'master' into fb-leap-447/number-validation
Gondragos e30decb
Fix comments for validation methods
Gondragos 2e7954e
Update @heartexlabs/ls-test package version
Gondragos f986d88
Update src/mixins/Required.js
Gondragos 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
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.
what's the idea behind underscore here? we use underscores rarely and for purely internal things, and those are called from other models using this mixin.
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 idea was to prevent using this method outside of the bundle
PerItemMixin <-> ClassificationBase
. I'm not sure how to prevent it in better way.