feat: Add replace image functionality

fix: Hide image caption when not directly editing
Update iconography
This commit is contained in:
Tom Moor
2021-12-12 17:23:07 -08:00
parent 60223f4404
commit 46f839431b
4 changed files with 16 additions and 13 deletions

View File

@@ -9,6 +9,7 @@ import {
ShapesIcon,
KeyboardIcon,
EmailIcon,
LogoutIcon,
} from "outline-icons";
import * as React from "react";
import {
@@ -138,6 +139,7 @@ export const openKeyboardShortcuts = createAction({
export const logout = createAction({
name: ({ t }) => t("Log out"),
section: NavigationSection,
icon: <LogoutIcon />,
perform: () => stores.auth.logout(),
});