From 7abf76f7f946abf18eda697fc84f3e9a53030d7b Mon Sep 17 00:00:00 2001 From: codl Date: Sun, 22 Apr 2018 20:20:05 +0200 Subject: [PATCH] remove statusid parameter in muted and blocked lists (#213) --- routes/_pages/blocked.html | 5 ++--- routes/_pages/muted.html | 5 ++--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/routes/_pages/blocked.html b/routes/_pages/blocked.html index 97641ff8..1b577d9b 100644 --- a/routes/_pages/blocked.html +++ b/routes/_pages/blocked.html @@ -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 } } - \ No newline at end of file + diff --git a/routes/_pages/muted.html b/routes/_pages/muted.html index 58d115c5..44a8f1f9 100644 --- a/routes/_pages/muted.html +++ b/routes/_pages/muted.html @@ -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 } } - \ No newline at end of file +