-
Notifications
You must be signed in to change notification settings - Fork 99
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
GUI miscellaneous #6 #1030
GUI miscellaneous #6 #1030
Conversation
This gives isWritable() a higher priority than isInUse()
Ultimately Spinner expects a number but received a string
@@ -304,8 +309,8 @@ class AlertComponent extends React.Component { | |||
condition_data_at_least_filter_id: condition_data_filter_id, | |||
condition_data_at_least_count: parseInt( | |||
value(condition.data.count, 1)), | |||
condition_data_severity: value(condition.data.severity, | |||
DEFAULT_SEVERITY), | |||
condition_data_severity: parseFloat(value(condition.data.severity, |
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.
would be better to user parseSeverity instead of parseFloat
Codecov Report
@@ Coverage Diff @@
## master #1030 +/- ##
=======================================
Coverage 11.42% 11.42%
=======================================
Files 820 820
Lines 26603 26603
Branches 5600 5600
=======================================
Hits 3039 3039
Misses 22005 22005
Partials 1559 1559
Continue to review full report at Codecov.
|
No description provided.