1
0
Fork 0
mirror of synced 2024-07-02 13:01:09 +12:00

hotfix/prevent-app-creation-failing

This commit is contained in:
Martin McKeaveney 2021-02-12 11:08:36 +00:00
parent 58dde5f168
commit 1f4fa6a659

View file

@ -48,6 +48,11 @@
modal.show()
}
function closeModal() {
template = null
modal.hide()
}
checkIfKeysAndApps()
</script>
@ -73,7 +78,7 @@
<AppList />
</div>
<Modal bind:this={modal} padding={false} width="600px">
<Modal bind:this={modal} padding={false} width="600px" on:hide={closeModal}>
<CreateAppModal {hasKey} {template} />
</Modal>