client: fix drawer

This commit is contained in:
Matteo Pagliazzi
2017-05-21 15:38:33 +02:00
parent 228b724d52
commit f267456a30
2 changed files with 6 additions and 6 deletions

View File

@@ -65,8 +65,8 @@
v-for="(label, group) in gearTypesToStrings", v-for="(label, group) in gearTypesToStrings",
:key="group", :key="group",
:item="flatGear[activeItems[group]]", :item="flatGear[activeItems[group]]",
:itemContentClass="'shop_' + flatGear[activeItems[group]].key", :itemContentClass="flatGear[activeItems[group]] ? 'shop_' + flatGear[activeItems[group]].key : null",
:showPopover="flatGear[activeItems[group]] && flatGear[activeItems[group]].key.indexOf('_base_0') === -1", :showPopover="!!flatGear[activeItems[group]] && flatGear[activeItems[group]].key.indexOf('_base_0') === -1",
:label="$t(label)", :label="$t(label)",
:selected="true", :selected="true",
:popoverPosition="'top'", :popoverPosition="'top'",

View File

@@ -1,10 +1,10 @@
<template lang="pug"> <template lang="pug">
div div
h4.popover-content-title(v-once) {{ item.text() }} h4.popover-content-title {{ item.text() }}
.popover-content-text(v-once) {{ item.notes() }} .popover-content-text {{ item.notes() }}
.popover-content-attr(v-for="attr in ATTRIBUTES", :key="attr", v-once) .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-key {{ `${$t(attr)}: ` }}
span.popover-content-attr-val(v-once) {{ `+${item[attr]}` }} span.popover-content-attr-val {{ `+${item[attr]}` }}
</template> </template>
<script> <script>