aboutsummaryrefslogtreecommitdiffstats
path: root/components/loader/LoaderTestDataModal.vue
diff options
context:
space:
mode:
Diffstat (limited to 'components/loader/LoaderTestDataModal.vue')
-rw-r--r--components/loader/LoaderTestDataModal.vue16
1 files changed, 9 insertions, 7 deletions
diff --git a/components/loader/LoaderTestDataModal.vue b/components/loader/LoaderTestDataModal.vue
index 8b0df21..582e224 100644
--- a/components/loader/LoaderTestDataModal.vue
+++ b/components/loader/LoaderTestDataModal.vue
@@ -8,7 +8,7 @@ const showModal = ref(false);
const open = () => {
showModal.value = true;
-}
+};
const confirm = () => {
const quests = loadQuestsFromJson(testData.quests);
@@ -23,11 +23,11 @@ const confirm = () => {
navigateToEditorPane(null);
showModal.value = false;
-}
+};
defineExpose({
- open
-})
+ open,
+});
</script>
<template>
@@ -36,8 +36,10 @@ defineExpose({
<h2>Import test data</h2>
</template>
- <p>You can view a demo of the Quests editor by loading test data. This will replace your current workspace.
- Do you want to continue?</p>
+ <p>
+ You can view a demo of the Quests editor by loading test data. This will replace your current
+ workspace. Do you want to continue?
+ </p>
<div id="controls" class="control-group">
<Button :icon="['fas', 'xmark']" :label="'Cancel'" @click="showModal = false"></Button>
@@ -52,4 +54,4 @@ defineExpose({
justify-content: flex-end;
margin-top: 1rem;
}
-</style> \ No newline at end of file
+</style>