This commit is contained in:
2021-05-19 13:57:33 +00:00
parent 7e4fa0d3ab
commit cdaf7f1dee
3 changed files with 14 additions and 1 deletions

View File

@@ -339,7 +339,7 @@ todo: many biz objects are not using new PUT methodology
CURRENTLY DOING: nothing...pick something below to continue
CURRENTLY DOING:
todo: boolean fields in table are showing "true" "false" must change to checkboxes or checkbox characters or something

View File

@@ -55,6 +55,12 @@
:show-select="$vuetify.breakpoint.xs"
single-select
>
<template v-slot:[`item.taxOnTax`]="{ item }">
<v-simple-checkbox
v-model="item.taxOnTax"
disabled
></v-simple-checkbox>
</template>
</v-data-table>
</v-col>
</template>

View File

@@ -71,6 +71,13 @@
>{{ item.priority.name }}
</template>
</template>
<template v-slot:[`item.warranty`]="{ item }">
<v-simple-checkbox
v-model="item.warranty"
disabled
></v-simple-checkbox>
</template>
</v-data-table>
</v-col>
</template>