chore: minor change

This commit is contained in:
Paulo Gustavo Veiga 2021-03-02 18:22:55 -08:00
parent 41f3d2129c
commit 97060ede91
2 changed files with 7 additions and 6 deletions

View File

@ -34,9 +34,10 @@ import StarRateRoundedIcon from '@material-ui/icons/StarRateRounded';
import SearchIcon from '@material-ui/icons/Search';
import { AddLabelButton } from './add-label-button';
// Load fromNow pluggin
import relativeTime from 'dayjs/plugin/relativeTime';
import { LabelsCell } from './labels-cell';
// Load fromNow pluggin
dayjs.extend(relativeTime);
function descendingComparator<T>(a: T, b: T, orderBy: keyof T) {

View File

@ -1,8 +1,8 @@
import React from 'react';
import Chip from '@material-ui/core/Chip';
import LabelIcon from '@material-ui/icons/Label';
import {Label} from '../../../../classes/client';
import { Label } from '../../../../classes/client';
import LabelTwoTone from '@material-ui/icons/LabelTwoTone';
type Props = {
labels: Label[],
};
@ -14,12 +14,12 @@ export function LabelsCell({ labels }: Props): React.ReactElement<Props> {
<Chip
key={label.id}
size="small"
icon={<LabelIcon />}
icon={<LabelTwoTone />}
label={label.title}
clickable
color="primary"
style={{ backgroundColor: label.color }}
onDelete={() => {return 1;}}
style={{ backgroundColor: label.color, opacity: '0.75' }}
onDelete={() => { return 1; }}
/>
))}
</>