aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/topbar
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2022-06-08 01:17:24 -0400
committerbobzel <zzzman@gmail.com>2022-06-08 01:17:24 -0400
commitf8840672a7bcb3f337d8e50098f374a1b2d441ce (patch)
treeae91a89fb8711c0fa216402c58c4acc130c65028 /src/client/views/topbar
parent3bf78af650a17db0a836118cb49159fd94cb8de2 (diff)
added ability to make thumbnails of dashboards. started to cleanup dockingView/goldenlayout undo event handling. cleaned up tab doc list in docking view. made titles editable again in treeview. fixed overlay view to work with image docs etc by setting top/left in css
Diffstat (limited to 'src/client/views/topbar')
-rw-r--r--src/client/views/topbar/TopBar.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/views/topbar/TopBar.tsx b/src/client/views/topbar/TopBar.tsx
index be248ab92..e486bcb52 100644
--- a/src/client/views/topbar/TopBar.tsx
+++ b/src/client/views/topbar/TopBar.tsx
@@ -48,7 +48,7 @@ export class TopBar extends React.Component {
await CurrentUserUtils.createNewDashboard(Doc.UserDoc());
batch.end();
}}>
- {"New"}<FontAwesomeIcon icon="plus" />
+ New<FontAwesomeIcon icon="plus" />
</div>
</Tooltip>
<Tooltip title={<div className="dash-tooltip">Work on a copy of the dashboard layout</div>} placement="bottom">
@@ -57,12 +57,12 @@ export class TopBar extends React.Component {
await CurrentUserUtils.snapshotDashboard(Doc.UserDoc());
batch.end();
}}>
- {"Snapshot"}<FontAwesomeIcon icon="camera" />
+ Snapshot<FontAwesomeIcon icon="camera" />
</div>
</Tooltip>
<Tooltip title={<div className="dash-tooltip">Browsing mode for directly navigating to documents</div>} placement="bottom">
<div className="topbar-icon" style={{ background: MainView.Instance._exploreMode ? Colors.LIGHT_BLUE : undefined }} onClick={action(() => MainView.Instance._exploreMode = !MainView.Instance._exploreMode)}>
- {"Explore"}<FontAwesomeIcon icon="map" />
+ Explore<FontAwesomeIcon icon="map" />
</div>
</Tooltip>
</div>