mirror of https://github.com/portainer/portainer
fix(container): duplicate/edit button causes empty container screen [EE-6566] (#10982)
parent
a15b7cf39a
commit
7cba02226e
|
@ -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…
Reference in New Issue