1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

feat: display all keys in properties tab

This commit is contained in:
2020-11-20 17:24:02 +01:00
parent dfb24c65f3
commit 27769f204f
7 changed files with 83 additions and 11 deletions

View File

@ -7,12 +7,15 @@
</div>
</div>
<div class="td" tabindex="0">
<i
v-if="localRow.key"
:title="keyName(localRow.key)"
class="mdi mdi-key column-key c-help pl-1"
:class="`key-${localRow.key}`"
/>
<div class="text-center">
<i
v-for="index in indexes"
:key="index.name"
:title="index.type"
class="d-inline-block mdi mdi-key column-key c-help"
:class="`key-${index.type}`"
/>
</div>
</div>
<div class="td">
<span
@ -279,7 +282,8 @@ export default {
},
props: {
row: Object,
dataTypes: Array
dataTypes: Array,
indexes: Array
},
data () {
return {