mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-01 06:36:56 +00:00
25 lines
441 B
Vue
25 lines
441 B
Vue
<script lang="ts" setup>
|
|
interface Props {
|
|
modelValue?: string | null
|
|
}
|
|
|
|
defineProps<Props>()
|
|
|
|
const rowHeight = inject(RowHeightInj, ref(undefined))
|
|
</script>
|
|
|
|
<template>
|
|
<LazyCellClampedText
|
|
class="nc-cell-field nc-uuid-cell"
|
|
:value="modelValue"
|
|
:lines="rowHeight"
|
|
:style="{ 'word-break': 'break-word', 'font-family': 'monospace' }"
|
|
/>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.nc-uuid-cell {
|
|
font-family: monospace;
|
|
}
|
|
</style>
|