mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-14 16:02:14 +00:00
client: fix drawer
This commit is contained in:
parent
228b724d52
commit
f267456a30
2 changed files with 6 additions and 6 deletions
|
|
@ -65,8 +65,8 @@
|
|||
v-for="(label, group) in gearTypesToStrings",
|
||||
:key="group",
|
||||
:item="flatGear[activeItems[group]]",
|
||||
:itemContentClass="'shop_' + flatGear[activeItems[group]].key",
|
||||
:showPopover="flatGear[activeItems[group]] && flatGear[activeItems[group]].key.indexOf('_base_0') === -1",
|
||||
:itemContentClass="flatGear[activeItems[group]] ? 'shop_' + flatGear[activeItems[group]].key : null",
|
||||
:showPopover="!!flatGear[activeItems[group]] && flatGear[activeItems[group]].key.indexOf('_base_0') === -1",
|
||||
:label="$t(label)",
|
||||
:selected="true",
|
||||
:popoverPosition="'top'",
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
<template lang="pug">
|
||||
div
|
||||
h4.popover-content-title(v-once) {{ item.text() }}
|
||||
.popover-content-text(v-once) {{ item.notes() }}
|
||||
h4.popover-content-title {{ item.text() }}
|
||||
.popover-content-text {{ item.notes() }}
|
||||
.popover-content-attr(v-for="attr in ATTRIBUTES", :key="attr", v-once)
|
||||
span.popover-content-attr-key(v-once) {{ `${$t(attr)}: ` }}
|
||||
span.popover-content-attr-val(v-once) {{ `+${item[attr]}` }}
|
||||
span.popover-content-attr-key {{ `${$t(attr)}: ` }}
|
||||
span.popover-content-attr-val {{ `+${item[attr]}` }}
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
|
|
|||
Loading…
Reference in a new issue