diff --git a/apps/client/src/widgets/ribbon/CollectionPropertiesTab.tsx b/apps/client/src/widgets/ribbon/CollectionPropertiesTab.tsx index fb68b7950..e961ae1f0 100644 --- a/apps/client/src/widgets/ribbon/CollectionPropertiesTab.tsx +++ b/apps/client/src/widgets/ribbon/CollectionPropertiesTab.tsx @@ -28,7 +28,7 @@ export default function CollectionPropertiesTab({ note }: TabContext) { const defaultViewType = (note?.type === "search" ? "list" : "grid"); const viewTypeWithDefault = (viewType ?? defaultViewType) as ViewTypeOptions; const properties = bookPropertiesConfig[viewTypeWithDefault].properties; - console.warn('CollectionPropertiesTab:', properties) + return (
{note && ( @@ -137,7 +137,7 @@ function NumberPropertyView({ note, property }: { note: FNote, property: NumberP function ComboBoxPropertyView({ note, property }: { note: FNote, property: ComboBoxProperty }) { const [ value, setValue ] = useNoteLabel(note, property.bindToLabel); - console.warn('ComboBoxPropertyView:', value) + return (