case 4575

This commit is contained in:
2024-03-20 00:39:25 +00:00
parent aea2cde4fe
commit 3616fad36c

View File

@@ -222,9 +222,10 @@
</template> </template>
<template v-else-if="c.t == 6"> <template v-else-if="c.t == 6">
<!-- BOOL --> <!-- BOOL -->
<v-icon v-if="c.v === false || c.v == 'false'" small
<v-icon v-if="c.v === false" small>$ayiSquare</v-icon> >$ayiSquare</v-icon
<v-icon v-else-if="c.v === true" small >
<v-icon v-else-if="c.v === true || c.v == 'true'" small
>$ayiCheckSquare</v-icon >$ayiCheckSquare</v-icon
> >
<v-icon v-else small>$ayiMinus-square</v-icon> <v-icon v-else small>$ayiMinus-square</v-icon>
@@ -434,10 +435,14 @@
<template v-else-if="c.t == 6"> <template v-else-if="c.t == 6">
<!-- BOOL --> <!-- BOOL -->
<div> <div>
<v-icon v-if="c.v === false" small <v-icon
v-if="c.v === false || c.v == 'false'"
small
>$ayiSquare</v-icon >$ayiSquare</v-icon
> >
<v-icon v-else-if="c.v === true" small <v-icon
v-else-if="c.v === true || c.v == 'true'"
small
>$ayiCheckSquare</v-icon >$ayiCheckSquare</v-icon
> >
<v-icon v-else small>$ayiMinus-square</v-icon> <v-icon v-else small>$ayiMinus-square</v-icon>