This commit is contained in:
Kevin Martinez 2023-11-28 12:08:33 -03:00
parent 008dfd1be8
commit ce4f7d79ed
3 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
import { ref, watch } from 'vue'; import { ref, watch } from 'vue';
const $props = defineProps({ const $props = defineProps({
addElement: { type: Function, required: true }, addElement: { type: Function, required: false },
element: { type: Object, default: null }, element: { type: Object, default: null },
id: { type: Number, default: null }, id: { type: Number, default: null },
isSelected: { type: Boolean, default: false }, isSelected: { type: Boolean, default: false },

View File

@ -74,7 +74,6 @@ function viewSummary(id) {
<CardList2 <CardList2
v-for="row of rows" v-for="row of rows"
:key="row.id" :key="row.id"
:showCheckbox="true"
:title="row.code" :title="row.code"
@click="navigate(row.id)" @click="navigate(row.id)"
> >

View File

@ -49,6 +49,7 @@ const setData = (entity) => (data.value = useCardDescription(entity.code, entity
:filter="filter" :filter="filter"
:title="data.title" :title="data.title"
:subtitle="data.subtitle" :subtitle="data.subtitle"
data-key="Shelvings"
@on-fetch="setData" @on-fetch="setData"
> >
<template #body="{ entity }"> <template #body="{ entity }">