refactor(nc-gui): replace virtual cell icon with render fn

This commit is contained in:
braks
2022-09-30 10:34:55 +02:00
parent 612978758c
commit b60e861caa
3 changed files with 58 additions and 31 deletions

View File

@@ -126,7 +126,7 @@ export default defineComponent({
return () => {
if (!column.value) return null
return h(renderIcon(column.value, abstractType.value), { class: 'text-grey mx-1 !text-sm' })
return h(renderIcon(column.value, abstractType.value), { class: 'text-grey mx-1 !text-xs' })
}
},
})