Skip to content

Commit cfe65a4

Browse files
committed
style: run prettier
1 parent 0540526 commit cfe65a4

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

Diff for: demo/app.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,8 @@ class App extends Component {
135135
type="text"
136136
value={searchString}
137137
onChange={event =>
138-
this.setState({ searchString: event.target.value })}
138+
this.setState({ searchString: event.target.value })
139+
}
139140
/>
140141
</label>
141142

@@ -176,7 +177,8 @@ class App extends Component {
176177
searchFoundCount: matches.length,
177178
searchFocusIndex:
178179
matches.length > 0 ? searchFocusIndex % matches.length : 0,
179-
})}
180+
})
181+
}
180182
canDrag={({ node }) => !node.dragDisabled}
181183
canDrop={({ nextParent }) => !nextParent || nextParent.isDirectory}
182184
generateNodeProps={rowInfo => ({

Diff for: node-content-renderer.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,8 @@ class FileThemeNodeContentRenderer extends Component {
111111
node,
112112
path,
113113
treeIndex,
114-
})}
114+
})
115+
}
115116
/>
116117
)}
117118

Diff for: node-content-renderer.scss

-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,6 @@
104104
display: flex;
105105
}
106106

107-
108107
.toolbarButton {
109108
@extend %rowItem;
110109
}

0 commit comments

Comments
 (0)