mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-05 03:26:54 +00:00
fix: set default row height to short
Signed-off-by: mertmit <mertmit99@gmail.com>
This commit is contained in:
@@ -35,7 +35,6 @@ const showBarcode = computed(() => barcodeValue?.value.length > 0 && !tooManyCha
|
||||
|
||||
const { showEditNonEditableFieldWarning, showClearNonEditableFieldWarning } = useShowNotEditableWarning()
|
||||
|
||||
|
||||
const rowHeight = computed(() => {
|
||||
if ((view.value?.view as GridType)?.row_height !== undefined) {
|
||||
switch ((view.value?.view as GridType)?.row_height) {
|
||||
@@ -47,6 +46,8 @@ const rowHeight = computed(() => {
|
||||
return 4
|
||||
case 3:
|
||||
return 6
|
||||
default:
|
||||
return 1
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user