chore(react/collections/table): basic drag support to change columns

This commit is contained in:
Elian Doran
2025-09-11 18:05:09 +03:00
parent 3ddcaddd79
commit 2e4791d377
2 changed files with 96 additions and 7 deletions

View File

@@ -26,6 +26,6 @@ export async function createNewItem(parentNote: FNote, column: string) {
}
}
async function changeColumn(noteId: string, newColumn: string, statusAttribute: string) {
export async function changeColumn(noteId: string, newColumn: string, statusAttribute: string) {
await attributes.setLabel(noteId, statusAttribute, newColumn);
}