added launching, patching, and ui override

This commit is contained in:
2024-01-13 23:41:40 +01:00
parent d9fec1193e
commit f11e84efd7
13 changed files with 599 additions and 15 deletions

View File

@@ -15,7 +15,7 @@
const launch = () => {
launching.set(true);
window.dispatchEvent(new CustomEvent("launch"));
window.dispatchEvent(new CustomEvent("launch", { detail: { patch: $patch } }));;
};
</script>

View File

@@ -42,11 +42,10 @@
>
</ButtonGroup>
<div class="flex flex-row justify-center items-center gap-5">
<Button color="light" class="dark:active:!bg-gray-900">Save</Button>
<Button
color="red"
class="dark:active:!bg-red-900 border-red-400"
on:click={() => currentPage.set(Page.Launch)}>Cancel</Button
color="light"
class="dark:active:!bg-gray-900"
on:click={() => currentPage.set(Page.Launch)}>Go Back</Button
>
</div>
</div>