Remove tags column from catalog table

This commit is contained in:
Ruslan Bakiev
2026-04-09 15:29:35 +07:00
parent f8880d75c6
commit e8fbe84e4f

View File

@@ -600,7 +600,6 @@ function decrementSelected(group: ProductGroup) {
<th class="border-b border-base-300">Толщина</th>
<th class="border-b border-base-300">Втулка</th>
<th class="border-b border-base-300">Короб</th>
<th class="border-b border-base-300">Теги</th>
<th class="border-b border-base-300 text-right">Действие</th>
</tr>
</thead>
@@ -612,18 +611,6 @@ function decrementSelected(group: ProductGroup) {
<td class="border-b border-base-200">{{ product.thicknessMicron ?? '—' }}</td>
<td class="border-b border-base-200">{{ product.sleeveBrand ?? '—' }}</td>
<td class="border-b border-base-200">{{ product.quantityPerBox ?? '—' }}</td>
<td class="border-b border-base-200">
<div v-if="product.normalizedTags.length" class="flex flex-wrap gap-2">
<span
v-for="tag in product.normalizedTags"
:key="`${product.id}-${tag}`"
class="rounded-full bg-[#eef8f1] px-2 py-1 text-[11px] font-semibold uppercase tracking-[0.06em] text-[#15613d]"
>
{{ tag }}
</span>
</div>
<span v-else></span>
</td>
<td class="border-b border-base-200 text-right">
<button
v-if="getQuantity(product.id) === 0"