feat(collection/presentation): add new view type

This commit is contained in:
Elian Doran
2025-10-15 18:39:57 +03:00
parent 1e377df6da
commit d9906a4a47
4 changed files with 7 additions and 2 deletions

View File

@@ -19,7 +19,8 @@ const VIEW_TYPE_MAPPINGS: Record<ViewTypeOptions, string> = {
calendar: t("book_properties.calendar"),
table: t("book_properties.table"),
geoMap: t("book_properties.geo-map"),
board: t("book_properties.board")
board: t("book_properties.board"),
presentation: t("book_properties.presentation")
};
export default function CollectionPropertiesTab({ note }: TabContext) {