diff options
| author | bobzel <zzzman@gmail.com> | 2025-02-27 11:06:19 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2025-02-27 11:06:19 -0500 |
| commit | 5505010e14bede33a692a656515bd6ca106103f2 (patch) | |
| tree | b0479fa27655466ea056f570cc9cafffc03fd5cb /src/client/views/PropertiesView.tsx | |
| parent | cfccfd0639dff68e47862fb8e78d75b0a1b287a1 (diff) | |
added x and y margins for card view.
Diffstat (limited to 'src/client/views/PropertiesView.tsx')
| -rw-r--r-- | src/client/views/PropertiesView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/PropertiesView.tsx b/src/client/views/PropertiesView.tsx index bed96f600..8e043baee 100644 --- a/src/client/views/PropertiesView.tsx +++ b/src/client/views/PropertiesView.tsx @@ -152,7 +152,7 @@ export class PropertiesView extends ObservableReactComponent<PropertiesViewProps return this.selectedDoc?.isGroup; } @computed get isStack() { - return [CollectionViewType.Masonry, CollectionViewType.Multicolumn, CollectionViewType.Multirow, CollectionViewType.Stacking, CollectionViewType.NoteTaking, CollectionViewType.Carousel].includes( + return [CollectionViewType.Masonry, CollectionViewType.Multicolumn, CollectionViewType.Multirow, CollectionViewType.Stacking, CollectionViewType.NoteTaking, CollectionViewType.Card, CollectionViewType.Carousel].includes( this.selectedDoc?.type_collection as CollectionViewType ); } |
