chore: Clarify import/export options

This commit is contained in:
Tom Moor
2023-01-02 10:39:49 -05:00
parent 846a1f8eab
commit 8c54f6330f
5 changed files with 14 additions and 16 deletions

View File

@@ -1,5 +1,4 @@
import {
NewDocumentIcon,
EmailIcon,
ProfileIcon,
PadlockIcon,
@@ -10,9 +9,10 @@ import {
TeamIcon,
BeakerIcon,
BuildingBlocksIcon,
DownloadIcon,
WebhooksIcon,
SettingsIcon,
ExportIcon,
ImportIcon,
} from "outline-icons";
import React from "react";
import { useTranslation } from "react-i18next";
@@ -167,7 +167,7 @@ const useSettingsConfig = () => {
component: Import,
enabled: can.createImport,
group: t("Team"),
icon: NewDocumentIcon,
icon: ImportIcon,
},
Export: {
name: t("Export"),
@@ -175,7 +175,7 @@ const useSettingsConfig = () => {
component: Export,
enabled: can.createExport,
group: t("Team"),
icon: DownloadIcon,
icon: ExportIcon,
},
// Integrations
Webhooks: {