-
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
Set of backend/frontend fixes #343
Conversation
… url is not replaced with public for the button
(data.getJsonArray("actions") | ||
?.stream() | ||
?.map { it as JsonObject } | ||
?.filter { it.containsKey("lastBuiltRevision") } | ||
?.toList() | ||
?.last() as JsonObject) | ||
.getJsonObject("lastBuiltRevision") | ||
?.getJsonArray("branch") | ||
?.first().let { branch = (it as JsonObject).getString("name") } |
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.
Take lase instead of first branch mentioned in the API response
<WidgetFooter | ||
updateTimestamp={updateTimestamp} | ||
expanded={expanded} | ||
handleToggle={handleToggle} | ||
content={content} | ||
expandContent={expandContent} | ||
closeWidgets={closeWidgets} | ||
id={id} | ||
/> |
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.
Moved higher in the hierarchy of the elements for better layout
isAuthenticated && | ||
isHoover && ( | ||
<WidgetMenuWrapper status={widgetStatus} theme={theme}> | ||
<MoreMenu | ||
color={ | ||
whiteSpaceInAuthenticatedMode ? 'primary' : 'default' | ||
} |
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.
More menu is now shown only when the mouse cursor is above the widget.
@@ -40,7 +40,7 @@ const ToDoListWidget = ({ id, selectedItems }) => { | |||
} | |||
label={ | |||
<Typography | |||
variant="subtitle1" | |||
variant="caption" |
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.
smaller font for items
margin-left: 8px; | ||
|
||
.MuiSvgIcon-root { | ||
font-size: 1rem; | ||
} |
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.
smaller chcekbox
Tested & accepted |
Frontend Fixes:
more
action is now visible only when the cursor is above this widgetgo to
buttons from Bamboo, Jenkins, SonarQube widgets and instead make the content clickableLast update timestamp
and bottom border of the widgetBackend Fixes:
Types of changes
Checklist:
I hereby agree to the terms of the Cogboard Contributor License Agreement.