mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-06 00:17:21 +00:00
fix: add default value to row height injection
Signed-off-by: mertmit <mertmit99@gmail.com>
This commit is contained in:
@@ -32,7 +32,10 @@ const showBarcode = computed(() => barcodeValue?.value.length > 0 && !tooManyCha
|
||||
|
||||
const { showEditNonEditableFieldWarning, showClearNonEditableFieldWarning } = useShowNotEditableWarning()
|
||||
|
||||
const rowHeight = inject(RowHeightInj)
|
||||
const rowHeight = inject(
|
||||
RowHeightInj,
|
||||
computed(() => undefined),
|
||||
)
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
||||
Reference in New Issue
Block a user