diff options
Diffstat (limited to 'components/export/ExportModal.vue')
| -rw-r--r-- | components/export/ExportModal.vue | 10 |
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> |
