Skip to content

Commit bf7b52f

Browse files
committed
fix: wrong params sent to backend.
1 parent 568aba8 commit bf7b52f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/routes/(console)/project-[project]/databases/database-[database]/collection-[collection]/attributes/float.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@
3131
collectionId,
3232
originalKey,
3333
data.required,
34+
data.default,
3435
data.min,
3536
data.max,
36-
data.default,
3737
data.key !== originalKey ? data.key : undefined
3838
);
3939
}

src/routes/(console)/project-[project]/databases/database-[database]/collection-[collection]/attributes/integer.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@
3131
collectionId,
3232
originalKey,
3333
data.required,
34+
data.default,
3435
data.min,
3536
data.max,
36-
data.default,
3737
data.key !== originalKey ? data.key : undefined
3838
);
3939
}

0 commit comments

Comments
 (0)