mirror of https://github.com/nocodb/nocodb
Pranav C
1 year ago
2 changed files with 20 additions and 2 deletions
@ -0,0 +1,11 @@ |
|||||||
|
<script lang="ts" setup> |
||||||
|
import { ColumnType, isVirtualCol } from 'nocodb-sdk' |
||||||
|
|
||||||
|
const { column } = defineProps<{ column: ColumnType }>() |
||||||
|
|
||||||
|
</script> |
||||||
|
|
||||||
|
<template> |
||||||
|
<SmartsheetHeaderVirtualCellIcon v-if="isVirtualCol(column)" :column-meta="column" /> |
||||||
|
<SmartsheetHeaderCellIcon v-else :column-meta="column" /> |
||||||
|
</template> |
Loading…
Reference in new issue