mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-01 21:07:05 +00:00
fix(nc-gui): row height issue if barcode qrcode field is present
This commit is contained in:
@@ -51,7 +51,7 @@ const height = computed(() => {
|
||||
return '1.8rem'
|
||||
}
|
||||
|
||||
return `${rowHeight.value === 1 ? rowHeightInPx['1']! - 4 : rowHeightInPx[`${rowHeight}`]! - 20}px`
|
||||
return `${rowHeight.value === 1 ? rowHeightInPx['1']! - 4 : rowHeightInPx[`${rowHeight.value}`]! - 20}px`
|
||||
})
|
||||
|
||||
const cellIcon = (column: ColumnType) =>
|
||||
|
||||
Reference in New Issue
Block a user