Se hacen correcciones segun solicititud para aprobacion del PR

This commit is contained in:
carlosfonseca 2023-12-07 12:36:29 -05:00
parent 0dbb23075b
commit c2705ec603
1 changed files with 8 additions and 3 deletions

View File

@ -13,7 +13,7 @@ const checkSelect = ref(false);
watch(
() => $props.isSelected,
(value, prevValue) => {
(value) => {
checkSelect.value = value;
}
);
@ -32,8 +32,8 @@ const selectedItem = (item) => {
<div class="title text-primary text-weight-bold text-h5">
{{ $props.title }}
</div>
<QChip outline color="grey" size="sm">
ID: {{ $props.id }}
<QChip outline color="white" size="sm">
{{ t('ID') }}: {{ $props.id }}
</QChip>
</div>
<QCheckbox
@ -120,3 +120,8 @@ const selectedItem = (item) => {
width: 75%;
}
</style>
<i18n>
es:
ID: ID
</i18n>