0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-02-17 23:45:29 -05:00

chore: set all to warning

for easy development, temporary
This commit is contained in:
Juan Picado @jotadeveloper 2018-12-15 09:04:01 +01:00
parent 0fb344d0c2
commit 9b42b45cfb
No known key found for this signature in database
GPG key ID: 18AC54485952D158
12 changed files with 60 additions and 66 deletions

View file

@ -184,8 +184,7 @@ class Header extends Component<IProps, IState> {
transformOrigin={{
vertical: 'top',
horizontal: 'right',
}}
>
}}>
<MenuItem disabled={true}>
<Greetings>{`Hi,`}</Greetings>
<Label capitalize={true} limit={140} text={username} weight={'bold'} />

View file

@ -17,9 +17,7 @@ import { CardStyled as Card, HelpTitle } from './styles';
function renderHeadingClipboardSegments(title: string, text: string): Node {
return (
<Fragment>
<Typography variant={ 'body2' }>
{title}
</Typography>
<Typography variant={'body2'}>{title}</Typography>
<CopyToClipBoard text={text} />
</Fragment>
);

View file

@ -52,8 +52,7 @@ const Package = ({ name: label, version, time, author: { name, avatar }, descrip
</OverviewItem>
)}
<OverviewItem>
<Icon name={'time'}
pointer={ true } />
<Icon name={'time'} pointer={true} />
<Published modifiers={spacing('margin', '0px', '5px', '0px', '0px')}>{`Published on ${formatDate(time)}`}</Published>
{`${formatDateDistance(time)} ago`}
</OverviewItem>

View file

@ -18,7 +18,7 @@ const RegistryInfoDialog = ({ open = false, children, onClose }: IProps): Node =
<Title disableTypography={true}>Register Info</Title>
<Content>{children}</Content>
<DialogActions>
<Button autoFocus={true} color={'inherit'} id={'registryInfo--dialog-close'} onClick={onClose}>
<Button color={'inherit'} id={'registryInfo--dialog-close'} onClick={onClose}>
CLOSE
</Button>
</DialogActions>

View file

@ -9,8 +9,6 @@ import type { Element } from 'react';
import { IProps } from './types';
import { Wrapper } from './styles';
const Tag = ({ children }: IProps): Element<Wrapper> => (<Wrapper>
{children}
</Wrapper>);
const Tag = ({ children }: IProps): Element<Wrapper> => <Wrapper>{children}</Wrapper>;
export default Tag;