chore(views/board): fix type errors

This commit is contained in:
Elian Doran 2025-07-21 14:45:06 +03:00
parent 08a93d81d7
commit 2384fdbaad
No known key found for this signature in database
2 changed files with 5 additions and 1 deletions

View File

@ -35,7 +35,8 @@ export const byBookType: Record<ViewTypeOptions, string | null> = {
grid: "8QqnMzx393bx",
calendar: "xWbu3jpNWapp",
table: "2FvYrpmOXm29",
geoMap: "81SGnPGMk7Xc"
geoMap: "81SGnPGMk7Xc",
board: null
};
export default class ContextualHelpButton extends NoteContextAwareWidget {

View File

@ -101,5 +101,8 @@ export const bookPropertiesConfig: Record<ViewTypeOptions, BookConfig> = {
width: 65
}
]
},
board: {
properties: []
}
};