This commit is contained in:
2020-12-29 15:14:27 +00:00
parent 5989316eb0
commit ab1c3f2339
3 changed files with 12 additions and 12 deletions

View File

@@ -115,13 +115,12 @@
</template>
<template v-else-if="c.t == 6">
<!-- BOOL -->
<div class="text-center">
<v-icon v-if="c.v === false" small>$ayiSquare</v-icon>
<v-icon v-else-if="c.v === true" small
>$ayiCheckSquare</v-icon
>
<v-icon v-else small>$ayiMinus-square</v-icon>
</div>
<v-icon v-if="c.v === false" small>$ayiSquare</v-icon>
<v-icon v-else-if="c.v === true" small
>$ayiCheckSquare</v-icon
>
<v-icon v-else small>$ayiMinus-square</v-icon>
</template>
<template v-else-if="c.t == 7">
<!-- DECIMAL -->
@@ -129,7 +128,7 @@
</template>
<template v-else-if="c.t == 8">
<!-- CURRENCY -->
<div class="text-right">{{ c.v }}</div>
{{ c.v }}
</template>
<template v-else-if="c.t == 9">
<!-- TAGS -->
@@ -694,6 +693,9 @@ function buildHeaders(columnData) {
let h = {};
h.text = window.$gz.translation.get(cm.cm);
h.value = "columns.c" + i.toString(); //+".v";
if (i == 0) {
h.align = "start";
}
ret.push(h);
}