0
0
Fork 0

refs #6892 fix checkbox

This commit is contained in:
Carlos Satorres 2024-03-04 09:51:51 +01:00
parent 04903928f5
commit fdf09710d8
2 changed files with 7 additions and 4 deletions

View File

@ -143,8 +143,9 @@ watch(props, async () => {
} }
.QCheckbox { .QCheckbox {
display: flex; display: flex;
// position: absolute; position: absolute;
// left: 0; left: 0;
margin-left: auto;
color: gray; color: gray;
} }
} }

View File

@ -231,9 +231,11 @@ const creditWarning = computed(() => {
:label="t('customer.summary.username')" :label="t('customer.summary.username')"
:value="entity.account.name" :value="entity.account.name"
/> />
<VnLv <QCheckbox
class="QCheckbox"
:label="t('customer.summary.webAccess')" :label="t('customer.summary.webAccess')"
:value="entity.account.active" v-model="entity.account.active"
:disable="true"
/> />
</QCard> </QCard>
<QCard class="vn-one" v-if="entity.account"> <QCard class="vn-one" v-if="entity.account">