Skip to content

Commit 5529aa9

Browse files
committed
fix lint issue
1 parent 239d779 commit 5529aa9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/views/components/filter/filter-view.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@ export class FilterView extends React.Component<Props, State> {
3737
return {title}
3838
}
3939

40-
_subscription: ?{remove: () => void} = null
41-
4240
state = {
4341
filters: [],
4442
}
@@ -61,6 +59,8 @@ export class FilterView extends React.Component<Props, State> {
6159
this._subscription && this._subscription.remove()
6260
}
6361

62+
_subscription: ?{remove: () => void} = null
63+
6464
onFilterChanged = (filter: FilterType) => {
6565
// replace the changed filter in the array, maintaining position
6666
this.setState(state => {

0 commit comments

Comments
 (0)