feat(book/table): allow editing cell values

This commit is contained in:
Elian Doran
2025-06-25 13:06:38 +03:00
parent 66761a69d3
commit 7e20e41521
4 changed files with 73 additions and 40 deletions

View File

@@ -11,7 +11,7 @@ async function addLabel(noteId: string, name: string, value: string = "") {
});
}
async function setLabel(noteId: string, name: string, value: string = "") {
export async function setLabel(noteId: string, name: string, value: string = "") {
await server.put(`notes/${noteId}/set-attribute`, {
type: "label",
name: name,