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

@@ -12,11 +12,9 @@ todo: datatable numbers
currency and possibly other numbers should center justify in their columns or left or whatever it takes to not look so weird but still be comparable / lined up or whatever
OR
Maybe it's the column header itself that should be moved
NOTE: CUrrency has problem, decimal apparently does not...investigate
todo: edit forms are suddenly cramped at the top, look to see if there was a vuetify change and if not needs spacing to decrampify it
compare widget to server version, very different at top
todo: NEXT DEPLOY TO DEVOPS attach a photo from phone, no error just does nothing
worked here locally latest build

View File

@@ -221,7 +221,7 @@
</v-toolbar-items>
</v-app-bar>
<v-main>
<v-container fluid>
<v-container fluid class="my-8">
<transition name="fade" mode="out-in" @after-leave="afterLeave">
<router-view class="view" :key="$route.fullPath"></router-view>
</transition>

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);
}