aboutsummaryrefslogtreecommitdiffstats
path: root/components/export/ExportModal.vue
diff options
context:
space:
mode:
authorLeonardo Bishop <me@leonardobishop.com>2024-03-15 00:13:40 +0000
committerLeonardo Bishop <me@leonardobishop.com>2024-03-15 00:13:40 +0000
commitc9aefa81ca1950121d2357fc66afe15eb400f537 (patch)
treefd6196b55626cea8101cd5a4a00cb2a00d8a495b /components/export/ExportModal.vue
parent1dd5d0fa8bb2ae794b263d1629a662166a9b9d08 (diff)
Fix eslint errors
Diffstat (limited to 'components/export/ExportModal.vue')
-rw-r--r--components/export/ExportModal.vue12
1 files changed, 7 insertions, 5 deletions
diff --git a/components/export/ExportModal.vue b/components/export/ExportModal.vue
index 1d09914..7adb603 100644
--- a/components/export/ExportModal.vue
+++ b/components/export/ExportModal.vue
@@ -5,14 +5,14 @@ const showModal = ref(false);
const open = () => {
showModal.value = true;
-}
+};
const { canUseFsApi } = getBrowserCapabilities();
const isUsingFsMode = computed(() => session.getSessionType() === 'filesystem');
defineExpose({
- open
-})
+ open,
+});
</script>
<template>
@@ -58,7 +58,9 @@ defineExpose({
<div id="description">
<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>
+ 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']" />
@@ -178,4 +180,4 @@ hr {
justify-content: flex-end;
margin-top: 1rem;
}
-</style> \ No newline at end of file
+</style>