From 6ba1207efbcdaed91be57fd25fd5cd7818571d40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bjo=CC=88rn=20Fromme?= Date: Tue, 16 Jul 2019 10:46:42 +0200 Subject: [PATCH] Use post for ajax request to fix chash issue --- .../Resources/Private/Assets/js/components/Watchlist.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/components/Watchlist.vue b/public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/components/Watchlist.vue index 8b7a9662..a2117bfe 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/components/Watchlist.vue +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/components/Watchlist.vue @@ -71,7 +71,8 @@ headers: { 'Accept': 'application/json' }, - params: query + data: $.param(query), + method: 'post' }).then((response) => { this.teasers = response.data.data; this.total = response.data.total;