0
0
Fork 0

fix: comments

This commit is contained in:
Javier Segarra 2024-06-19 13:43:32 +02:00
parent db67fd1e43
commit 3fdad15f21
1 changed files with 9 additions and 39 deletions

View File

@ -131,7 +131,7 @@ const detailsColumns = ref([
auto-load
/>
<QPage :key="componentKey" class="column items-center q-pa-md">
<div class="order-list">
<div class="order-list full-width">
<div v-if="!orderSummary.total" class="no-result">
{{ t('globals.noResults') }}
</div>
@ -213,46 +213,21 @@ const detailsColumns = ref([
</span>
</QTd>
</template>
<template #body-cell-description="{ value }">
<QTd class="description-cell">
<FetchedTags
:item="value"
:max-length="6"
class="fetched-tags"
/>
<div class="row full-width justify-between">
<template #body-cell-description="{ row, value }">
<QTd>
<div
class="row column full-width justify-between flex-start"
style="align-items: flex-start"
>
{{ value }}
<div v-if="value" class="subName">
{{ value.toUpperCase() }}
</div>
</div>
<FetchedTags :item="row.item" :max-length="6" />
</QTd>
</template>
<template #body-cell-warehouse="{ value }">
<QTd>
{{ value }}
</QTd>
</template>
<template #body-cell-shipped="{ value }">
<QTd>
{{ value }}
</QTd>
</template>
<template #body-cell-quantity="{ value }">
<QTd>
{{ value }}
</QTd>
</template>
<template #body-cell-price="{ value }">
<QTd>
{{ value }}
</QTd>
</template>
<template #body-cell-amount="{ value }">
<QTd>
{{ value }}
</QTd>
</template>
<template #body-cell-actions="{ value }">
<QTd>
<QIcon
@ -261,7 +236,6 @@ const detailsColumns = ref([
size="sm"
class="cursor-pointer"
@click.stop="confirmRemove(value)"
style="margin-left: 40%"
>
<QTooltip>{{ t('Remove thermograph') }}</QTooltip>
</QIcon>
@ -324,10 +298,6 @@ const detailsColumns = ref([
text-align: center;
}
.description-cell {
width: 25%;
}
.subName {
text-transform: uppercase;
color: var(--vn-label-color);