aboutsummaryrefslogtreecommitdiffstats
path: root/components/editor/quest/modal/Rename.vue
diff options
context:
space:
mode:
authorLeonardo Bishop <me@leonardobishop.com>2024-03-10 01:56:33 +0000
committerLeonardo Bishop <me@leonardobishop.com>2024-03-10 01:56:33 +0000
commit4d2f28ecead7514a957d343b9d4d139afaa48421 (patch)
treee5e92173f2f7006bc70f9d3768a13048e78abae0 /components/editor/quest/modal/Rename.vue
parent5def5ad30934b13193e4b0d9e291025255b21ff4 (diff)
Fix broken fontawesome references
Diffstat (limited to 'components/editor/quest/modal/Rename.vue')
-rw-r--r--components/editor/quest/modal/Rename.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/editor/quest/modal/Rename.vue b/components/editor/quest/modal/Rename.vue
index 7339219..3d846aa 100644
--- a/components/editor/quest/modal/Rename.vue
+++ b/components/editor/quest/modal/Rename.vue
@@ -35,8 +35,8 @@ const isDuplicate = computed(() => {
<p v-if="isDuplicate" class="error-text">Name is not unique.</p>
<p>A Quest ID must be unique, alphanumeric, and not contain any spaces.</p>
<div id="confirm" class="control-group">
- <Button :icon="['fas', 'fa-times']" :label="'Cancel'" @click="model = false"></Button>
- <Button type="solid" :icon="['fas', 'fa-check']" :label="'Rename'" :disabled="isDuplicate"
+ <Button :icon="['fas', 'times']" :label="'Cancel'" @click="model = false"></Button>
+ <Button type="solid" :icon="['fas', 'check']" :label="'Rename'" :disabled="isDuplicate"
@click="emit('update', newQuestId)"></Button>
</div>
</div>