mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-18 07:07:35 +01:00
chore(lint): run fix
This commit is contained in:
@@ -6,9 +6,9 @@
|
||||
>
|
||||
<div class="col-12 text-center">
|
||||
<div
|
||||
v-once
|
||||
class="svg-icon quest-icon color"
|
||||
v-html="icons.questIcon"
|
||||
v-once
|
||||
></div>
|
||||
<h4 v-once>
|
||||
{{ $t('yourPartyIsNotOnQuest') }}
|
||||
@@ -86,8 +86,10 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div v-if="hasPendingQuestItems"
|
||||
class="item-progress-pending mb-2">
|
||||
<div
|
||||
v-if="hasPendingQuestItems"
|
||||
class="item-progress-pending mb-2"
|
||||
>
|
||||
<div class="pending-amount pt-2 pb-2">
|
||||
{{ $t('questItemsPending', { amount: user.party.quest.progress.collectedItems }) }}
|
||||
</div>
|
||||
@@ -126,9 +128,9 @@
|
||||
<div class="col-6">
|
||||
<span class="float-left hp-value">
|
||||
<div
|
||||
v-once
|
||||
class="svg-icon health-icon"
|
||||
v-html="icons.healthNoPaddingIcon"
|
||||
v-once
|
||||
></div>
|
||||
{{
|
||||
(Math.ceil(parseFloat(group.quest.progress.hp) * 100) / 100)
|
||||
@@ -151,9 +153,9 @@
|
||||
progress on the group doc? Each user could have different progress.-->
|
||||
<span class="float-right pending-value">
|
||||
<div
|
||||
v-once
|
||||
class="svg-icon sword-icon"
|
||||
v-html="icons.swordIcon"
|
||||
v-once
|
||||
></div>
|
||||
{{
|
||||
(user.party.quest.progress.up || 0)
|
||||
@@ -187,9 +189,9 @@
|
||||
<div class="col-6">
|
||||
<span class="float-left rage-value">
|
||||
<div
|
||||
v-once
|
||||
class="svg-icon rage-icon icon-16"
|
||||
v-html="icons.rageIcon"
|
||||
v-once
|
||||
>
|
||||
</div>
|
||||
<span
|
||||
@@ -229,8 +231,10 @@
|
||||
></div>
|
||||
</div>
|
||||
</div>
|
||||
<div v-if="onPendingQuest || onActiveQuest"
|
||||
class="quest-buttons">
|
||||
<div
|
||||
v-if="onPendingQuest || onActiveQuest"
|
||||
class="quest-buttons"
|
||||
>
|
||||
<button
|
||||
class="btn btn-secondary w-100"
|
||||
@click="openQuestDetails()"
|
||||
@@ -238,8 +242,10 @@
|
||||
{{ $t('viewDetails') }}
|
||||
</button>
|
||||
</div>
|
||||
<div v-if="userIsQuestLeader && !onActiveQuest"
|
||||
class="quest-buttons">
|
||||
<div
|
||||
v-if="userIsQuestLeader && !onActiveQuest"
|
||||
class="quest-buttons"
|
||||
>
|
||||
<button
|
||||
class="btn btn-success w-100"
|
||||
@click="startQuest()"
|
||||
|
||||
Reference in New Issue
Block a user