refs #6595 - PR2 - Resolve conflicts #144

Merged
alexm merged 250 commits from hyervoni-branch-PR-2 into dev 2024-01-11 12:22:28 +00:00
1 changed files with 8 additions and 3 deletions
Showing only changes of commit 0e624bdfd3 - Show all commits

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>