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