feat(views/table): actually add attributes

This commit is contained in:
Elian Doran
2025-06-27 22:43:29 +03:00
parent fe1dbb4cbf
commit 0fb0be4ffc
5 changed files with 30 additions and 14 deletions

View File

@@ -48,7 +48,8 @@ function updateNoteAttribute(req: Request) {
attribute = new BAttribute({
noteId: noteId,
name: body.name,
type: body.type
type: body.type,
isInheritable: body.isInheritable
});
}