mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-29 21:46:53 +00:00
fix: avoid filling new rows
Signed-off-by: mertmit <mertmit99@gmail.com>
This commit is contained in:
@@ -298,6 +298,11 @@ export function useMultiSelect(
|
||||
|
||||
function handleMouseOver(event: MouseEvent, row: number, col: number) {
|
||||
if (isFillMode.value) {
|
||||
const rw = unref(data)[row]
|
||||
|
||||
// fill is not supported for new rows yet
|
||||
if (rw.rowMeta.new) return
|
||||
|
||||
fillRange.endRange({ row, col: selectedRange.end.col })
|
||||
scrollToCell?.(row, col)
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user