From 5139ee4ac650503a4c1bacae93a052ddbf00844c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Espino?= Date: Thu, 15 Oct 2020 20:24:02 +0200 Subject: [PATCH] Using tabs instead of spaces --- src/client/components/sidebar.tsx | 40 +++++++++++++++---------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/src/client/components/sidebar.tsx b/src/client/components/sidebar.tsx index 99d0b25ed..2b5d491a0 100644 --- a/src/client/components/sidebar.tsx +++ b/src/client/components/sidebar.tsx @@ -32,19 +32,19 @@ class Sidebar extends React.Component {
{ this.boardClicked(board) }}>{board.icon ? `${board.icon} ${displayTitle}` : displayTitle}
- -
- - { - const nextBoardId = boards.length > 1 ? boards.find(o => o.id !== board.id).id : undefined - mutator.deleteBlock( - board, - "delete block", - async () => { nextBoardId && this.props.showBoard(nextBoardId!) }, - async () => { this.props.showBoard(board.id) }, - )}} /> - - + +
+ + { + const nextBoardId = boards.length > 1 ? boards.find(o => o.id !== board.id).id : undefined + mutator.deleteBlock( + board, + "delete block", + async () => { nextBoardId && this.props.showBoard(nextBoardId!) }, + async () => { this.props.showBoard(board.id) }, + )}} /> + +
) }) @@ -56,13 +56,13 @@ class Sidebar extends React.Component {
- -
Settings
- - Archiver.importFullArchive(() => { this.forceUpdate() })} /> - Archiver.exportFullArchive()} /> - -
+ +
Settings
+ + Archiver.importFullArchive(() => { this.forceUpdate() })} /> + Archiver.exportFullArchive()} /> + +
) }