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.
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
[Vis: Default editor] EUIficate time interval control #34991
[Vis: Default editor] EUIficate time interval control #34991
Changes from 24 commits
b822888
db04376
9d20af2
4f397f6
7911aa8
fd642b0
32604d0
735542e
7b794c3
e42d471
5d0d388
6f32466
62d52c6
deebd42
c8d0d02
f2c4d56
e772718
70c4844
9d3340c
57fe4b5
2c803f5
9d24249
ab8fb50
ffa9172
cfa1205
224634e
0b67d5f
43aaaed
030b036
5571977
5f77403
17f7bde
f986a9c
155af1d
5542184
aaf9e05
f531484
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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 can cause a write failure? Is it always a good idea to swallow the error? Should we log or do something to indicate a failure here? (I don't know the answers to these questions. I just want to be sure this is what we really want to do. Silent catches are often a source of bugs.)
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.
Essentially a write failure is caused by an invalid time interval. But in fact the reason is that this
makeLabel
method is invoked every digest cycle.On master when a user types an invalid interval, TypeError is printed in console.log. Since currently this error doesn't break UI, and to not break some logic that might be based on such exception, I will leave the code as it is. (I reverted the changes)
This file was deleted.