fix(ui) - funnels request
This commit is contained in:
parent
29ed85afba
commit
ddd051e18a
1 changed files with 6 additions and 5 deletions
|
|
@ -23,11 +23,12 @@ const FunnelHeader = (props) => {
|
|||
const [showSaveModal, setShowSaveModal] = useState(false)
|
||||
|
||||
const writeOption = (e, { name, value }) => {
|
||||
props.fetch(value)
|
||||
props.fetchInsights(value, {})
|
||||
props.fetchIssuesFiltered(value, {})
|
||||
props.fetchSessionsFiltered(value, {})
|
||||
props.redirect(value)
|
||||
props.fetch(value).then(() => {
|
||||
props.fetchInsights(value, {})
|
||||
props.fetchIssuesFiltered(value, {})
|
||||
props.fetchSessionsFiltered(value, {})
|
||||
props.redirect(value)
|
||||
})
|
||||
}
|
||||
|
||||
const deleteFunnel = async (e, funnel) => {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue