remove statusid parameter in muted and blocked lists (#213)

pull/216/head
codl 2018-04-22 20:20:05 +02:00 zatwierdzone przez Nolan Lawson
rodzic 61595103fa
commit 7abf76f7f9
2 zmienionych plików z 4 dodań i 6 usunięć

Wyświetl plik

@ -8,8 +8,7 @@
export default {
computed: {
statusId: params => params.statusId,
accountsFetcher: ($currentInstance, $accessToken, statusId) => () => getBlockedAccounts($currentInstance, $accessToken, statusId)
accountsFetcher: ($currentInstance, $accessToken) => () => getBlockedAccounts($currentInstance, $accessToken)
},
store: () => store,
components: {
@ -17,4 +16,4 @@
DynamicPageBanner
}
}
</script>
</script>

Wyświetl plik

@ -8,8 +8,7 @@
export default {
computed: {
statusId: params => params.statusId,
accountsFetcher: ($currentInstance, $accessToken, statusId) => () => getMutedAccounts($currentInstance, $accessToken, statusId)
accountsFetcher: ($currentInstance, $accessToken) => () => getMutedAccounts($currentInstance, $accessToken)
},
store: () => store,
components: {
@ -17,4 +16,4 @@
DynamicPageBanner
}
}
</script>
</script>