Copilot commented on code in PR #17499:
URL: https://github.com/apache/pinot/pull/17499#discussion_r2686315185
##########
pinot-controller/src/main/resources/app/components/Header.tsx:
##########
@@ -33,6 +33,51 @@ type Props = {
};
const useStyles = makeStyles((theme) => ({
+ clusterContainer: {
+ display: 'flex',
+ alignItems: 'center',
+ marginRight: theme.spacing(2),
+ },
+ clusterBox: {
+ textAlign: 'center',
+ margin: '11.5px 0',
+ paddingLeft: theme.spacing(2),
+ borderLeft: '1px solid rgba(255,255,255,0.5)',
+ },
+ linkGroup: {
+ display: 'flex',
+ alignItems: 'center',
+ gap: theme.spacing(1),
+ fontSize: '0.85rem',
+ paddingLeft: theme.spacing(1.5),
+ whiteSpace: 'nowrap',
+ borderLeft: '1px solid rgba(255,255,255,0.5)',
+ },
+ linkColumn: {
+ display: 'flex',
+ flexDirection: 'column',
+ height: theme.spacing(5),
+ minWidth: theme.spacing(9),
+ },
+ linkItem: {
+ flex: 1,
+ display: 'flex',
+ alignItems: 'center',
+ justifyContent: 'center',
+ padding: theme.spacing(0, 1),
+ },
+ linkItemTop: {
+ borderBottom: '1px solid rgba(255, 255, 255, 0.2)',
+ },
+ link: {
+ color: 'rgba(255, 255, 255, 0.9)',
+ textDecoration: 'none',
+ fontWeight: 700,
+ '&:hover': {
+ color: '#fff',
+ textDecoration: 'underline',
+ },
+ },
breadcrumbRoot:{
Review Comment:
Missing space after property name. Should be `breadcrumbRoot: {` for
consistency with TypeScript/JavaScript style conventions.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]