-
Notifications
You must be signed in to change notification settings - Fork 9
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
SIMSBIOHUB-345: Display Time in Sampling Periods #1167
Conversation
Openshift URLs for the PR Deployment: |
Codecov Report
@@ Coverage Diff @@
## dev-staging #1167 +/- ##
===============================================
- Coverage 61.49% 61.32% -0.18%
===============================================
Files 551 552 +1
Lines 16657 16702 +45
Branches 2551 2570 +19
===============================================
- Hits 10244 10243 -1
- Misses 5741 5782 +41
- Partials 672 677 +5
... and 1 file with indirect coverage changes 📣 Codecov offers a browser extension for seamless coverage viewing on GitHub. Try it in Chrome or Firefox today! |
Couple things I noticed:
|
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.
adding and editing works as expected
SonarCloud Quality Gate failed. 0 Bugs No Coverage information Catch issues before they fail your Quality Gate with our IDE extension SonarLint |
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.
🕐
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.
Tested locally, everything working correctly
<Icon path={mdiClockOutline} size={1} /> | ||
</ListItemIcon> | ||
<ListItemText | ||
primary={`${period.start_time} ${(period.end_time && `to ${period.end_time}`) || ''}`} |
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.
Could avoid the trailing whitespace:
primary={[period.start_time, period.end_time].filter(Boolean).join(' to ')}
Links to Jira Tickets
Description of Changes
Testing Notes