refactor: lint options

This commit is contained in:
liyasthomas
2021-05-25 21:43:13 +05:30
parent 2e213a8692
commit baf6d6bd29
11 changed files with 174 additions and 96 deletions

View File

@@ -92,14 +92,14 @@
<script>
import {
restHistory$,
restHistory$,
graphqlHistory$,
clearRESTHistory,
clearGraphqlHistory,
toggleGraphqlHistoryEntryStar,
toggleRESTHistoryEntryStar,
deleteGraphqlHistoryEntry,
deleteRESTHistoryEntry
deleteRESTHistoryEntry,
} from "~/newstore/history"
export default {
@@ -116,7 +116,7 @@ export default {
},
subscriptions() {
return {
history: this.page === "rest" ? restHistory$ : graphqlHistory$
history: this.page === "rest" ? restHistory$ : graphqlHistory$,
}
},
computed: {