From cbcad219a4b3c74c75005573c76f29dc996a0d74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C5=BEe=20Fortun?= Date: Thu, 18 May 2023 16:17:40 +0200 Subject: [PATCH] Refresh twitter feed when url changes --- .../compose/src/components/PageBlocks/SocialFeedBase.vue | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/client/web/compose/src/components/PageBlocks/SocialFeedBase.vue b/client/web/compose/src/components/PageBlocks/SocialFeedBase.vue index 63d805b30..f85093340 100644 --- a/client/web/compose/src/components/PageBlocks/SocialFeedBase.vue +++ b/client/web/compose/src/components/PageBlocks/SocialFeedBase.vue @@ -56,6 +56,15 @@ export default { }, }, + watch: { + options: { + deep: true, + handler () { + this.refresh() + }, + }, + }, + mounted () { this.refreshBlock(this.refresh) },