diff options
| author | bobzel <zzzman@gmail.com> | 2022-06-08 19:34:18 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2022-06-08 19:34:18 -0400 |
| commit | 3fcb141913c095e0bdee8874431a51cafe086e3a (patch) | |
| tree | e9fb48b34063e2ceaaa65bbaf41f197d61a4f38b /src/client/views/topbar | |
| parent | 2e42d66be1439de347305cfd43c6f7e7042127c6 (diff) | |
| parent | 94975954fbd1ce9b68f6545b16a4eabe4b41cca0 (diff) | |
merge with master
Diffstat (limited to 'src/client/views/topbar')
| -rw-r--r-- | src/client/views/topbar/TopBar.tsx | 6 |
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> |
