Skip to content

Commit 3cd9498

Browse files
committed
lint: remove useless return and comma
1 parent 0d2ae90 commit 3cd9498

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/devtools/views/vuex/VuexStateInspector.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,12 @@ export default {
7676
)
7777
)
7878
79-
return groupBy(sortByKey(inspectedState.filter(el => {
80-
return searchDeepInObject({
79+
return groupBy(sortByKey(inspectedState.filter(
80+
el => searchDeepInObject({
8181
[el.key]: el.value
8282
}, this.filter)
83-
})), 'type')
84-
},
83+
)), 'type')
84+
}
8585
},
8686
watch: {
8787
showImportStatePopup (val) {

0 commit comments

Comments
 (0)