diff options
| author | bobzel <zzzman@gmail.com> | 2024-03-04 12:55:05 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2024-03-04 12:55:05 -0500 |
| commit | 49cfa95fdb3653a1224d4e5e3380e111c8e2014f (patch) | |
| tree | 193b366687111c9bc76355c5fd51e8ab1af94069 /src/client/views/collections/TabDocView.tsx | |
| parent | 63f119fb99dc1f658b7e3edad5da64e9cf686ada (diff) | |
changes to restore template menu and fix freeform templates to always show contents. Fix for alt-dropping an image to replace another image.
Diffstat (limited to 'src/client/views/collections/TabDocView.tsx')
| -rw-r--r-- | src/client/views/collections/TabDocView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/TabDocView.tsx b/src/client/views/collections/TabDocView.tsx index b52f2e7b6..699ec3b95 100644 --- a/src/client/views/collections/TabDocView.tsx +++ b/src/client/views/collections/TabDocView.tsx @@ -638,7 +638,7 @@ export class TabMinimapView extends ObservableReactComponent<TabMinimapViewProps render() { return this._props.document.layout !== CollectionView.LayoutString(Doc.LayoutFieldKey(this._props.document)) || this._props.document?._type_collection !== CollectionViewType.Freeform ? null : ( <div className="miniMap-hidden"> - <Popup icon={<FontAwesomeIcon icon="globe-asia" size="lg" />} color={SettingsManager.userVariantColor} type={Type.TERT} onPointerDown={e => e.stopPropagation()} placement={'top-end'} popup={this.popup} /> + <Popup icon={<FontAwesomeIcon icon="globe-asia" size="lg" />} color={SettingsManager.userVariantColor} type={Type.TERT} onPointerDown={e => e.stopPropagation()} placement="top-end" popup={this.popup} /> </div> ); } |
