KeyOverwriteCard
parent
44a9252a9c
commit
c71b1925c3
|
@ -2,7 +2,7 @@ import React from "react";
|
||||||
import PropTypes from "prop-types";
|
import PropTypes from "prop-types";
|
||||||
import ExpandableCard from "../../../../../../components/common/ExpandableCard";
|
import ExpandableCard from "../../../../../../components/common/ExpandableCard";
|
||||||
import { useTranslation } from "react-i18next";
|
import { useTranslation } from "react-i18next";
|
||||||
import SurroundSoundRoundedIcon from "@material-ui/icons/SurroundSoundRounded";
|
import FindReplaceIcon from "@material-ui/icons/FindReplace";
|
||||||
|
|
||||||
import KeyOverwriteSummary from "./KeyOverwriteSummary";
|
import KeyOverwriteSummary from "./KeyOverwriteSummary";
|
||||||
|
|
||||||
|
@ -11,9 +11,9 @@ const KeyOverwriteCard = ({ data }) => {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ExpandableCard
|
<ExpandableCard
|
||||||
Icon={<SurroundSoundRoundedIcon />}
|
Icon={<FindReplaceIcon />}
|
||||||
title={t("Server.ActiveSession")}
|
title={t("Forward.Options.KeyOverwrite.Label")}
|
||||||
subtitle={t("Server.ActiveSessionSubtitle")}
|
subtitle={t("Forward.Options.KeyOverwrite.Tooltip")}
|
||||||
Summary={<KeyOverwriteSummary data={data} />}
|
Summary={<KeyOverwriteSummary data={data} />}
|
||||||
Content={<div>CONTENT...</div>}
|
Content={<div>CONTENT...</div>}
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Reference in New Issue