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