change(ui) - removed logs and comment
This commit is contained in:
parent
deb20f4e34
commit
c68bbf68b4
2 changed files with 1 additions and 10 deletions
|
|
@ -81,12 +81,6 @@ export default class GraphQL extends React.PureComponent {
|
|||
const { list } = nextProps;
|
||||
if (nextProps.time) {
|
||||
const filtered = GraphQL.filterList(list, prevState.filter);
|
||||
console.log({
|
||||
list,
|
||||
filtered,
|
||||
time: nextProps.time,
|
||||
});
|
||||
|
||||
let i = 0;
|
||||
filtered.forEach((item, index) => {
|
||||
if (item.time <= nextProps.time) {
|
||||
|
|
|
|||
|
|
@ -42,10 +42,7 @@ function NoteItem(props: Props) {
|
|||
const safeStrMessage =
|
||||
props.note.message.length > 150 ? props.note.message.slice(0, 150) + '...' : props.note.message;
|
||||
return (
|
||||
<div
|
||||
className="flex items-center p-2 border-b"
|
||||
// style={{ background: '#FFFEF5' }}
|
||||
>
|
||||
<div className="flex items-center p-2 border-b">
|
||||
<Link
|
||||
style={{ width: '90%' }}
|
||||
to={
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue