forked from cybrespace/pinafore
remove statusid parameter in muted and blocked lists (#213)
This commit is contained in:
parent
61595103fa
commit
7abf76f7f9
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue