Merge pull request #2213 from appwrite/feat-SER-259-change-insert-to-create

This commit is contained in:
Darshan
2025-08-12 18:36:20 +05:30
committed by GitHub
2 changed files with 2 additions and 1 deletions
@@ -308,7 +308,7 @@
title={$showCreateAttributeSheet.title}
bind:show={$showCreateAttributeSheet.show}
submit={{
text: 'Insert',
text: 'Create',
onClick: async () => {
await createColumn?.submit();
},
@@ -191,6 +191,7 @@
showActions={$canWriteRows}
actions={{
primary: {
text: 'Create rows',
onClick: () => {
$showRecordsCreateSheet.show = true;
}