-
Notifications
You must be signed in to change notification settings - Fork 95
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
Extend TLS Certificate Assets #1578
Conversation
Use lowercase instead of camelCase
The long certificate names pushed the dropdown out of the dialog
4ccf293
to
2f84987
Compare
Codecov Report
@@ Coverage Diff @@
## master #1578 +/- ##
==========================================
- Coverage 37.83% 37.81% -0.03%
==========================================
Files 1042 1043 +1
Lines 23795 23834 +39
Branches 6519 6533 +14
==========================================
+ Hits 9004 9013 +9
- Misses 13443 13473 +30
Partials 1348 1348
Continue to review full report at Codecov.
|
<TableRow> | ||
<TableData>{_('Activates')}</TableData> | ||
<TableData> | ||
{dateTimeWithTimeZone(entity.activationTime)} |
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.
Should use the DateTime component instead of the dateTimeWithTimeZone function
<TableRow> | ||
<TableData>{_('Expires')}</TableData> | ||
<TableData> | ||
{dateTimeWithTimeZone(entity.expirationTime)} |
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.
Same here. It should use the DateTime component instead of the dateTimeWithTimeZone function
}; | ||
|
||
const Details = ({entity, ...props}) => { | ||
const showSourceBlock = [entity.sourceReportIds].reduce( |
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.
I don't get this line :-) Any reason why not using const showSourceBlock = entity.sourceReportIds.length > 0
?
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.
Yes, it was late at night ;) In the beginning I just did for the showXY what we do in the menubar. Turned out to be much simpler but I didn't remove the leftover...
bbc0fc2
to
a024fee
Compare
Checklist: