summaryrefslogtreecommitdiff
path: root/frontend/views/page/components
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/views/page/components')
-rw-r--r--frontend/views/page/components/tile.list.js6
1 files changed, 1 insertions, 5 deletions
diff --git a/frontend/views/page/components/tile.list.js b/frontend/views/page/components/tile.list.js
index 9d6ae05..d6e5366 100644
--- a/frontend/views/page/components/tile.list.js
+++ b/frontend/views/page/components/tile.list.js
@@ -36,17 +36,13 @@ class TileList extends Component {
}
}
- componentWillUnmount() {
- console.log('will unmount', this.state)
- }
-
handleChoose(e) {
const { lastTargetId, lastTimeStamp } = this.state
if (lastTimeStamp
&& parseInt(e.item.dataset.id) === lastTargetId
&& (e.timeStamp - lastTimeStamp) < DOUBLE_CLICK_THRESHOLD
) {
- console.log('selected', lastTargetId)
+ // console.log('selected', lastTargetId)
this.didDoubleClick = true
this.props.pageActions.showEditTileForm(lastTargetId)
} else {