Skip to content

Commit

Permalink
wip: customize KTable rows with renderer #960
Browse files Browse the repository at this point in the history
  • Loading branch information
tristan-greffe committed Sep 29, 2024
1 parent 373b163 commit 335b1ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/client/components/collection/KTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ const pagination = ref({
const selectableColumns = computed(() => columns.value.filter(column => column.name !== 'actions'))
const filterQuery = computed(() => Object.assign({}, props.filterQuery, tableQuery.value))
const renderer = computed(() => props.renderer)
const hasRenderer = computed(() => !_.isEmpty(props.renderer))
const hasRenderer = computed(() => _.isArray(props.renderer) && !_.isEmpty(props.renderer))
const hasSelection = computed(() => !_.isString(props.selection))
const { schema, compile } = useSchema()
Expand Down

0 comments on commit 335b1ce

Please sign in to comment.