aboutsummaryrefslogtreecommitdiffstats
path: root/components/export/ExportModal.vue
diff options
context:
space:
mode:
authorLeonardo Bishop <me@leonardobishop.com>2024-03-13 19:33:33 +0000
committerLeonardo Bishop <me@leonardobishop.com>2024-03-13 19:33:33 +0000
commitbd26b2800e2675613c6990673ad0b7b5175aa841 (patch)
tree26d1a89d9ed60ad73a82fbe3371d8c58578702f5 /components/export/ExportModal.vue
parent825d2cadee4ddf34d0dde8c278fc8e8a99e95b95 (diff)
Add zip export
Diffstat (limited to 'components/export/ExportModal.vue')
-rw-r--r--components/export/ExportModal.vue10
1 files changed, 9 insertions, 1 deletions
diff --git a/components/export/ExportModal.vue b/components/export/ExportModal.vue
index 8bc6936..1d09914 100644
--- a/components/export/ExportModal.vue
+++ b/components/export/ExportModal.vue
@@ -41,6 +41,10 @@ defineExpose({
<font-awesome-icon :icon="['fas', 'xmark']" />
You did not start this session by importing from file system.
</p>
+ <p class="error" v-if="canUseFsApi && isUsingFsMode">
+ <font-awesome-icon :icon="['fas', 'xmark']" />
+ Not yet implemented.
+ </p>
</div>
<div id="button-group">
@@ -56,6 +60,10 @@ defineExpose({
<p id="subtitle">Send to Server</p>
<p>Upload your quest configuration to the server, which can be downloaded and automatically applied in-game.
</p>
+ <p class="error">
+ <font-awesome-icon :icon="['fas', 'xmark']" />
+ Not yet implemented.
+ </p>
</div>
<div id="button-group">
@@ -73,7 +81,7 @@ defineExpose({
</div>
<div id="button-group">
- <Button type="solid" label="Continue" :disabled="true" />
+ <ExportZipButton />
</div>
</div>
</div>