move cookie updating to the NPS component
This commit is contained in:
parent
6aa3ad03e2
commit
60b17594f5
|
@ -43,6 +43,8 @@
|
||||||
comment,
|
comment,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
document.cookie = "feedbackSubmitted=true"
|
||||||
|
|
||||||
dispatch("submitted")
|
dispatch("submitted")
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -35,11 +35,6 @@
|
||||||
window.open(`/${application}`)
|
window.open(`/${application}`)
|
||||||
}
|
}
|
||||||
|
|
||||||
function feedbackSubmitted() {
|
|
||||||
userShouldPostFeedback = false
|
|
||||||
document.cookie = "feedbackSubmitted=true"
|
|
||||||
}
|
|
||||||
|
|
||||||
async function getPackage() {
|
async function getPackage() {
|
||||||
const res = await get(`/api/applications/${application}/appPackage`)
|
const res = await get(`/api/applications/${application}/appPackage`)
|
||||||
const pkg = await res.json()
|
const pkg = await res.json()
|
||||||
|
@ -116,7 +111,7 @@
|
||||||
{/await}
|
{/await}
|
||||||
|
|
||||||
{#if userShouldPostFeedback}
|
{#if userShouldPostFeedback}
|
||||||
<NPSFeedbackForm on:submitted={feedbackSubmitted} />
|
<NPSFeedbackForm on:submitted={() => (userShouldPostFeedback = false)} />
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
|
Loading…
Reference in New Issue