Skip to content
This repository was archived by the owner on Nov 8, 2022. It is now read-only.

Commit 68b3a2b

Browse files
committed
style: fmt
1 parent 3c84dc6 commit 68b3a2b

File tree

4 files changed

+24
-4
lines changed

4 files changed

+24
-4
lines changed

containers/JobsThread/logic.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,12 @@ const debug = makeDebugger('L:JobsThread')
3434
let store = null
3535
let sub$ = null
3636

37-
const validFilter = R.pickBy(R.compose(R.not, R.isEmpty))
37+
const validFilter = R.pickBy(
38+
R.compose(
39+
R.not,
40+
R.isEmpty
41+
)
42+
)
3843

3944
export const inAnchor = () => store.setHeaderFix(false)
4045
export const outAnchor = () => store.setHeaderFix(true)

containers/PostsThread/logic.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,12 @@ let store = null
3535
let sub$ = null
3636

3737
// TODO: move to utils
38-
const validFilter = R.pickBy(R.compose(R.not, R.isEmpty))
38+
const validFilter = R.pickBy(
39+
R.compose(
40+
R.not,
41+
R.isEmpty
42+
)
43+
)
3944

4045
export const inAnchor = () => store.setHeaderFix(false)
4146
export const outAnchor = () => store.setHeaderFix(true)

containers/ReposThread/logic.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,12 @@ const debug = makeDebugger('L:ReposThread')
3232

3333
let store = null
3434

35-
const validFilter = R.pickBy(R.compose(R.not, R.isEmpty))
35+
const validFilter = R.pickBy(
36+
R.compose(
37+
R.not,
38+
R.isEmpty
39+
)
40+
)
3641

3742
export const inAnchor = () => store.setHeaderFix(false)
3843
export const outAnchor = () => store.setHeaderFix(true)

containers/VideosThread/logic.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,12 @@ const debug = makeDebugger('L:VideosThread')
3434

3535
let store = null
3636

37-
const validFilter = R.pickBy(R.compose(R.not, R.isEmpty))
37+
const validFilter = R.pickBy(
38+
R.compose(
39+
R.not,
40+
R.isEmpty
41+
)
42+
)
3843

3944
export function loadVideos(page = 1) {
4045
const { mainPath } = store.curRoute

0 commit comments

Comments
 (0)