Skip to content

Commit

Permalink
Update card.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
zhanghangt authored Jun 4, 2024
1 parent d95d7fe commit e1ac365
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ma-form/containerItem/card.vue
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const getColumnService= inject('getColumnService')
const columns = inject('columns')

const hasDisplayTrue = (list) => {
return list.some(item => item.display === true);
return list.some(item => item.display ?? true);
}

const rv = async (ev, value = undefined) => await runEvent(props.component, ev, { formModel, getColumnService, columns }, value)
Expand Down

0 comments on commit e1ac365

Please sign in to comment.