fix: refs #8616 update binding syntax for is-editable prop in AgencyList.vue #1446

Merged
jtubau merged 19 commits from 8616-fixWarningsRouteSection into dev 2025-03-12 08:11:59 +00:00
3 changed files with 7 additions and 2 deletions
Showing only changes of commit 2d6284c8d9 - Show all commits

View File

@ -6,6 +6,7 @@ import VnSelect from 'components/common/VnSelect.vue';
import VnInput from 'components/common/VnInput.vue';
import VnInputDate from 'components/common/VnInputDate.vue';
import VnInputTime from 'components/common/VnInputTime.vue';
import VnCheckbox from 'components/common/VnCheckbox.vue';
import VnColumn from 'components/VnTable/VnColumn.vue';
const $props = defineProps({
@ -107,7 +108,7 @@ const components = {
},
},
checkbox: {
component: markRaw(QCheckbox),
component: markRaw(VnCheckbox),
event: updateEvent,
attrs: {
class: $props.showTitle ? 'q-py-sm' : 'q-px-md q-py-xs fit',

View File

@ -54,7 +54,7 @@ const $props = defineProps({
default: 'table',
},
redirect: {
type: Boolean,
type: [String, Boolean],
default: true,
},
arrayData: {

View File

@ -33,6 +33,10 @@ const props = defineProps({
type: String,
default: '',
},
userFilter: {
jtubau marked this conversation as resolved
Review

no se utiliza la prop, es por warnings?

no se utiliza la prop, es por warnings?
Review

Si

Si
type: Object,
default: null,
},
filter: {
type: Object,
default: null,