fix(container): duplicate/edit button causes empty container screen [EE-6566] (#10982)

pull/10994/head
Oscar Zhou 10 months ago committed by GitHub
parent a15b7cf39a
commit 7cba02226e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -18,7 +18,7 @@ export function useWebhooks(
async function getWebhooks(filters: Filters) {
try {
const { data } = await axios.get<Array<Webhook>>(buildUrl(), {
params: { filters },
params: { filters: JSON.stringify(filters) },
});
return data;
} catch (err) {

Loading…
Cancel
Save