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

This commit is contained in:
codl 2018-04-22 20:20:05 +02:00 committed by Nolan Lawson
parent 61595103fa
commit 7abf76f7f9
2 changed files with 4 additions and 6 deletions

View File

@ -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>

View File

@ -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>